1. 02 Jul, 2004 1 commit
  2. 01 Jul, 2004 8 commits
  3. 30 Jun, 2004 5 commits
  4. 29 Jun, 2004 5 commits
  5. 28 Jun, 2004 6 commits
  6. 27 Jun, 2004 12 commits
  7. 26 Jun, 2004 3 commits
    • unknown's avatar
      memory leak in tz code closed · 68ff7025
      unknown authored
      (table opened in my_tz_init, was removed from thd->open_tables in
      tz_load_from_db w/o being unlocked, so it was stayng in open_cache
      forever preventing the latter from being free'd in table_cache_free)
      
      
      68ff7025
    • unknown's avatar
      removed using lex->select_lex.options is SHOW TABLE [STATUS] commands (BUG#4288) · f7b9e75b
      unknown authored
      
      mysql-test/r/func_group.result:
        fixed
      mysql-test/r/ps.result:
        SHOW TABLE STATUS test
      mysql-test/t/ps.test:
        SHOW TABLE STATUS test
      sql/sql_parse.cc:
        Use lex->describe instead of lex->select_lex.options
      sql/sql_yacc.yy:
        removed unneed initialization of lex->select_lex.options
      f7b9e75b
    • unknown's avatar
      correct eq() method for Item_param (BUG#4233) · 12499342
      unknown authored
      
      mysql-test/r/ps.result:
        eq() for parameters test
      mysql-test/t/ps.test:
        eq() for parameters test
      sql/item.h:
        correct eq() method for Item_param
      12499342