1. 13 Jan, 2010 5 commits
  2. 12 Jan, 2010 1 commit
  3. 11 Jan, 2010 6 commits
    • Vladislav Vaintroub's avatar
      3fe740e1
    • Vladislav Vaintroub's avatar
      merge · b5188711
      Vladislav Vaintroub authored
      b5188711
    • Alexander Nozdrin's avatar
      Backporting revision from mysql-6.0-codebase-bugfixing. · ba3b5a7e
      Alexander Nozdrin authored
      Original revision:
      ------------------------------------------------------------
      revno: 3817
      revision-id: guilhem@mysql.com-20100108092756-k0zzf4kvx9b7bh38
      parent: guilhem@mysql.com-20100107101133-hrrgcdqg508runuf
      committer: Guilhem Bichot <guilhem@mysql.com>
      branch nick: mysql-6.0-codebase-bugfixing
      timestamp: Fri 2010-01-08 10:27:56 +0100
      message:
        fix for BUG#50120 "Valgrind errors in any test, inside mysqltest"
        Problem was that as v->name[v->name_len] may be uninitialized (which is ok per se),
        it shouldn't be used in an if(). We remove this zero_the_char/restore_it logic by
        rather zero-terminating the v->name string when we create it in var_init().
      ------------------------------------------------------------
      ba3b5a7e
    • Alexander Nozdrin's avatar
      Backporting revision from mysql-6.0-codebase-bugfixing. · c06a3050
      Alexander Nozdrin authored
      Original revision:
      
      ------------------------------------------------------------
      revno: 3789.1.9
      revision-id: serg@mysql.com-20091229134448-phe834ukzmi0k2e3
      parent: serg@mysql.com-20091227081418-bgfg952gzumn1k3h
      committer: Sergei Golubchik <serg@mysql.com>
      branch nick: 6.0-codebase
      timestamp: Tue 2009-12-29 14:44:48 +0100
      message:
        better fix for Bug#48758 mysqltest crashes on sys_vars.collation_server_basic in gcov builds
        
        use setenv instead of putenv
      ------------------------------------------------------------
      c06a3050
    • Vladislav Vaintroub's avatar
      Add option for specifying MYSQL build configurations. · 125cd58f
      Vladislav Vaintroub authored
      Add mysql_release.cmake intended for use by the build team (
      compile options, build settings to do MySQL releases)
      125cd58f
    • Alexander Nozdrin's avatar
      Auto-merge from mysql-next-mr. · 7973ab7c
      Alexander Nozdrin authored
      7973ab7c
  4. 09 Jan, 2010 1 commit
  5. 08 Jan, 2010 4 commits
  6. 07 Jan, 2010 1 commit
  7. 06 Jan, 2010 2 commits
  8. 07 Jan, 2010 1 commit
  9. 06 Jan, 2010 11 commits
  10. 05 Jan, 2010 5 commits
  11. 04 Jan, 2010 3 commits
    • Vladislav Vaintroub's avatar
      merge · 00549a37
      Vladislav Vaintroub authored
      00549a37
    • Jorgen Loland's avatar
      local merge · 76f13596
      Jorgen Loland authored
      76f13596
    • Jorgen Loland's avatar
      Bug#48920: COUNT DISTINCT returns 1 for NULL values when in a · 3dab08f1
      Jorgen Loland authored
                 subquery in the select list
            
      When a dependent subquery with count(distinct <col>) was 
      evaluated multiple times, the Distinct_Aggregator was reused. 
      However, the Aggregator was not reset, so when the subquery was
      evaluated for the next record in the outer select, old dependent
      info was used.
            
      The fix is to clear() the existing aggregator in 
      Item_sum::set_aggregator(). This ensures that the aggregator is
      reevaluated with the new dependent information.
      3dab08f1