1. 18 Aug, 2009 2 commits
  2. 17 Aug, 2009 1 commit
  3. 13 Aug, 2009 1 commit
  4. 11 Aug, 2009 3 commits
  5. 06 Aug, 2009 1 commit
  6. 05 Aug, 2009 1 commit
  7. 31 Jul, 2009 1 commit
  8. 23 Jul, 2009 1 commit
  9. 17 Jul, 2009 1 commit
  10. 16 Jul, 2009 1 commit
  11. 15 Jul, 2009 1 commit
  12. 22 Jun, 2009 2 commits
  13. 16 Jun, 2009 1 commit
  14. 03 Jun, 2009 1 commit
  15. 02 Jun, 2009 1 commit
  16. 29 May, 2009 2 commits
  17. 28 May, 2009 3 commits
  18. 27 May, 2009 7 commits
  19. 26 May, 2009 2 commits
  20. 25 May, 2009 5 commits
    • Bjorn Munch's avatar
      merge from 5.1-mtr · 8d08c6d0
      Bjorn Munch authored
      8d08c6d0
    • Staale Smedseng's avatar
      Bug #44736 mysqld_safe's my_which() is broken and · b9962a7d
      Staale Smedseng authored
      doesn't find 'logger'
      
      Due to a variable quoting mistake, the $PATH environment
      variable isn't parsed correctly when searching for the
      existence of the desired executable(s) (logger in this 
      case).
      
      This patch removes the quotes.
      b9962a7d
    • Bjorn Munch's avatar
      Bug #44922 mysqltest's query_get_value function can't work with queries containing ',' · d7943e92
      Bjorn Munch authored
      check_command_args() always looks for the first , (or whatever)
      Extended check_command_args() to let arguments be quoted
      Added test in mysqltest.test
      d7943e92
    • Davi Arnaut's avatar
      Bug#42158: leak: SSL_get_peer_certificate() doesn't have matching X509_free() · 1e658cb0
      Davi Arnaut authored
      The problem is that the server failed to follow the rule that
      every X509 object retrieved using SSL_get_peer_certificate()
      must be explicitly freed by X509_free(). This caused a memory
      leak for builds linked against OpenSSL where the X509 object
      is reference counted -- improper counting will prevent the
      object from being destroyed once the session containing the
      peer certificate is freed.
      
      The solution is to explicitly free every X509 object used.
      
      mysql-test/r/openssl_1.result:
        Add test case result for Bug#42158
      mysql-test/t/openssl_1.test:
        Add test case for Bug#42158
      sql/sql_acl.cc:
        Deallocate X509 objects.
      1e658cb0
    • Georgi Kodinov's avatar
      Bug #44399 : crash with statement using TEXT columns, aggregates, GROUP BY, and · 1b3c88e5
      Georgi Kodinov authored
      HAVING
                  
      When calculating GROUP BY the server caches some expressions. It does
      that by allocating a string slot (Item_copy_string) and assigning the 
      value of the expression to it. This effectively means that the result
      type of the expression can be changed from whatever it was to a string.
      As this substitution takes place after the compile-time result type 
      calculation for IN but before the run-time type calculations, 
      it causes the type calculations in the IN function done at run time 
      to get unexpected results different from what was prepared at compile time.
                        
      In the CASE ... WHEN ... THEN ... statement there was a similar problem
      and it was solved by artificially adding a STRING argument to the set of 
      types of the IN/CASE arguments at compile time, so if any of the 
      arguments of the CASE function changes its type to a string it will 
      still be covered by the information prepared at compile time.
      
      mysql-test/include/mix1.inc:
        Bug #44399: extended the test to cover the different types
      mysql-test/r/func_in.result:
        Bug #44399: test case
      mysql-test/r/innodb_mysql.result:
        Bug #44399: extended the test to cover the different types
      mysql-test/t/func_in.test:
        Bug #44399: test case
      sql/item.cc:
        Bug #44399: Implement typed caching for GROUP BY
      sql/item.h:
        Bug #44399: Implement typed caching for GROUP BY
      sql/item_cmpfunc.cc:
        Bug #44399: remove the special case
      sql/sql_select.cc:
        Bug #44399: Implement typed caching for GROUP BY
      1b3c88e5
  21. 23 May, 2009 1 commit
  22. 22 May, 2009 1 commit