1. 09 May, 2011 1 commit
    • Bjorn Munch's avatar
      WL #5680 MTR results written to file with well defined format · 72de39b9
      Bjorn Munch authored
      Added --result-file option, which will produce var/mtr-results.txt
      Output has a simple format:
      
      <tag> : <value>  for general info on test run
      {
        <tag> : <value>
        ....
      }                for each test
      
      Output from failed tests are included but may be truncated.
      See WL for more details.
      72de39b9
  2. 29 Apr, 2011 10 commits
  3. 28 Apr, 2011 2 commits
  4. 27 Apr, 2011 9 commits
  5. 26 Apr, 2011 9 commits
  6. 25 Apr, 2011 2 commits
  7. 23 Apr, 2011 3 commits
  8. 22 Apr, 2011 3 commits
    • Sergey Glukhov's avatar
      5.1 -> 5.5 merge · ec9bd00e
      Sergey Glukhov authored
      ec9bd00e
    • Sergey Glukhov's avatar
      Bug#11756928 48916: SERVER INCORRECTLY PROCESSING HAVING CLAUSES WITH AN ORDER BY CLAUSE · 801b0ca2
      Sergey Glukhov authored
      Before sorting HAVING condition is split into two parts,
      first part is a table related condition and the rest of is
      HAVING part. Extraction of HAVING part does not take into account
      the fact that some of conditions might be non-const but
      have 'used_tables' == 0 (independent subqueries)
      and because of that these conditions are cut off by
      make_cond_for_table() function.
      The fix is to use (table_map) 0 instead of used_tables in
      third argument for make_cond_for_table() function.
      It allows to extract elements which belong to sorted
      table and in addition elements which are independend
      subqueries.
      
      
      mysql-test/r/having.result:
        test case
      mysql-test/t/having.test:
        test case
      sql/sql_select.cc:
        The fix is to use (table_map) 0 instead of used_tables in
        third argument for make_cond_for_table() function.
        It allows to extract elements which belong to sorted
        table and in addition elements which are independend
        subqueries.
      801b0ca2
    • Sergey Vojtovich's avatar
      Merge. · 708df849
      Sergey Vojtovich authored
      708df849
  9. 21 Apr, 2011 1 commit