1. 15 Nov, 2010 1 commit
  2. 14 Nov, 2010 1 commit
  3. 05 Nov, 2010 1 commit
    • Bjorn Munch's avatar
      Bug #57840 MTR: parallel execution breaks with smart ordering of test cases · 866cec61
      Bjorn Munch authored
      There were actually more problems in this area:
        Slaves (if any) were unconditionally restarted, this appears unnecessary.
        Sort criteria were suboptimal, included the test name.
      Added logic to "reserve" a sequence of tests with same config for one thread
      Got rid of sort_criteria hash, put it into the test case itself
      Adds little sanity check that expected worker picks up test
      Fixed some tests that may fail if starting on running server
      Some of these fail only if *same* test is repeated.
      Finally, special sorting of tests that do --force-restart
      866cec61
  4. 21 Oct, 2010 1 commit
  5. 20 Oct, 2010 4 commits
  6. 19 Oct, 2010 3 commits
  7. 07 Oct, 2010 1 commit
  8. 01 Oct, 2010 1 commit
  9. 30 Sep, 2010 2 commits
  10. 29 Sep, 2010 1 commit
  11. 28 Sep, 2010 2 commits
  12. 22 Sep, 2010 1 commit
  13. 21 Sep, 2010 1 commit
  14. 20 Sep, 2010 1 commit
  15. 15 Sep, 2010 1 commit
  16. 14 Sep, 2010 1 commit
  17. 13 Sep, 2010 1 commit
  18. 10 Sep, 2010 2 commits
  19. 09 Sep, 2010 1 commit
    • Ramil Kalimullin's avatar
      Fix for bug#56679: gis.test: valgrind error · 762c7ca4
      Ramil Kalimullin authored
      Item_func_spatial_collection::fix_length_and_dec()
      changed to use argument's print() method to print
      the ER_ILLEGAL_VALUE_FOR_TYPE error.
      
      
      mysql-test/r/gis.result:
        Fix for bug#56679: gis.test: valgrind error
          - test result adjusted.
      sql/item_geofunc.h:
        Fix for bug#56679: gis.test: valgrind error
          - use argument's print() method instead of improper val_str()
        call in the Item_func_spatial_collection::fix_length_and_dec(), as
        it's applicable only for constant items.
      762c7ca4
  20. 07 Sep, 2010 4 commits
  21. 02 Sep, 2010 1 commit
  22. 31 Aug, 2010 1 commit
  23. 30 Aug, 2010 2 commits
  24. 26 Aug, 2010 3 commits
    • Alexey Kopytov's avatar
      Automerge. · 5012ce8d
      Alexey Kopytov authored
      5012ce8d
    • Alexey Kopytov's avatar
      Automerge. · 08b3c60d
      Alexey Kopytov authored
      08b3c60d
    • Alexey Kopytov's avatar
      Bug #53544: Server hangs during JOIN query in stored procedure · 6cf49743
      Alexey Kopytov authored
                  called twice in a row
      
      Queries with nested joins could cause an infinite loop in the
      server when used from SP/PS.
      
      When flattening nested joins, simplify_joins() tracks if the
      name resolution list needs to be updated by setting
      fix_name_res to TRUE if the current loop iteration has done any
      transformations to the join table list. The problem was that
      the flag was not reset before the next loop iteration leading
      to unnecessary "fixing" of the name resolution list which in
      turn could lead to a loop (i.e. circularly-linked part) in that
      list. This was causing problems on subsequent execution when
      used together with stored procedures or prepared statements.
      
      Fixed by making sure fix_name_res is reset on every loop
      iteration.
      
      mysql-test/r/join.result:
        Added a test case for bug #53544.
      mysql-test/t/join.test:
        Added a test case for bug #53544.
      sql/sql_select.cc:
        Make sure fix_name_res is reset on every loop iteration.
      6cf49743
  25. 25 Aug, 2010 2 commits