1. 15 Jul, 2007 1 commit
    • unknown's avatar
      Post-merge fixes · 9e552023
      unknown authored
      Disabled tests which break automatic merging due to
      non-empty warnings file.
      
      9e552023
  2. 14 Jul, 2007 7 commits
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.0-axmrg · 58be49dc
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      58be49dc
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.1-amain · 27e51d69
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      
      mysql-test/lib/mtr_report.pl:
        Auto merged
      mysql-test/r/show_check.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_update.result:
        Auto merged
      mysql-test/suite/ndb/t/ndb_single_user.test:
        Auto merged
      mysql-test/suite/ndb/t/ndb_update.test:
        Auto merged
      mysql-test/suite/parts/r/rpl_partition.result:
        Auto merged
      mysql-test/suite/parts/t/rpl_partition.test:
        Auto merged
      mysql-test/t/disabled.def:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/sql_class.cc:
        Auto merged
      mysql-test/suite/rpl/r/rpl_sp.result:
        Auto merged
      27e51d69
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-4.1-axmrg · fc7e1318
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.0-axmrg
      
      fc7e1318
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.0-amain · 81e139fd
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.0-axmrg
      
      81e139fd
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-4.1-amain · 2b768c23
      unknown authored
      into  chilla.local:/home/mydev/mysql-4.1-axmrg
      
      2b768c23
    • unknown's avatar
      Merge mysql.com:/home/svoj/devel/mysql/BUG29734/mysql-5.0-engines · 491725a5
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG29734/mysql-5.1-engines
      
      
      sql/sql_class.cc:
        Manual merge.
      491725a5
    • unknown's avatar
      BUG#29734 - thread_id=0 in binary log which leads to temporary table conflicts · 260780d8
      unknown authored
      pseudo_thread_id was reset to zero via mysql_change_user() handling
      whereas there is no reason to do that.  Moreover, having two
      concurrent threads that change user and create a namesake temp tables
      leads to recording the dup pair of queries:
      
         set @@session.pseudo_thread_id = 0;
         CREATE temporary table `the namesake`;
      
      which will stall the slave as the second instance can not be created.
      And that is the bug case.
      
      Fixed by correcting pseudo_thread_id value after mysql_change_user().
      
      
      sql/sql_class.cc:
        Fixed that pseudo_thread_id was set to 0 after mysql_change_user().
      260780d8
  3. 13 Jul, 2007 1 commit
  4. 12 Jul, 2007 4 commits
    • unknown's avatar
      BUG#29464 - load data infile into table with big5 chinese fulltext index · f205d0ae
      unknown authored
                  hangs 100% cpu
      
      Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
      character set.
      
      
      mysql-test/r/fulltext.result:
        Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
        character set.
      mysql-test/r/fulltext3.result:
        Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
        character set.
      mysql-test/t/fulltext.test:
        Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
        character set.
      mysql-test/t/fulltext3.test:
        Moved a test case for BUG#29464 into fulltext3.test, since it requires big5
        character set.
      f205d0ae
    • unknown's avatar
      BUG#29445 - match ... against () never returns · e1a697c8
      unknown authored
      Part 2:
      Searching fulltext index for a word with boolean mode truncation
      operator may cause infinite loop.
      
      The problem was that "smarter index merge" was used with "trunc-words",
      which must never happen.
      
      Affects 5.1 only.
      
      
      mysql-test/r/fulltext.result:
        Addition to a test case for BUG#29445.
      mysql-test/t/fulltext.test:
        Addition to a test case for BUG#29445.
      storage/myisam/ft_boolean_search.c:
        Fulltext "smarter index merge" optimization assumes that rows
        it gets are ordered by doc_id. That is not the case when we
        search for a word with truncation operator. It may return
        rows in random order. Thus we may not use "smarter index merge"
        optimization with "trunc-words".
        
        Also fixed compiler warning introduced by Part 1 patch.
      e1a697c8
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.1-ateam · 341aa0e5
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-bug28810
      
      341aa0e5
    • unknown's avatar
      Bug#28158 - table->read_set is set incorrectly, · a4dc99fb
      unknown authored
              causing wrong error message in Falcon
      
      An error message about a duplicate key could show a wrong key
      value when not all columns of the key were used to select the
      rows for update.
      
      Some storage engines return a record with only the selected
      columns filled.
      
      This is fixed by re-reading the record with a read_set which
      includes all columns of the duplicate key after a duplicate key
      error happens and before the error message is printed.
      
      
      mysql-test/r/ndb_update.result:
        Bug#28158 - table->read_set is set incorrectly,
                    causing wrong error message in Falcon
        Added test result.
      mysql-test/t/ndb_update.test:
        Bug#28158 - table->read_set is set incorrectly,
                    causing wrong error message in Falcon
        Added test from falcon_bug_28158.
      sql/sql_update.cc:
        Bug#28158 - table->read_set is set incorrectly,
                    causing wrong error message in Falcon
        Added a function for re-reading a record with a read_set
        that contains all fields used by a duplicate key.
        Called the function before every call to handler::print_error(),
        which could print a duplicate key value.
      a4dc99fb
  5. 11 Jul, 2007 2 commits
  6. 10 Jul, 2007 5 commits
    • unknown's avatar
      BUG#29445 - match ... against () never returns · 43e8245e
      unknown authored
      Part 1:
      Do not perform index search for a plus-word with truncation operator
      in case there are other plus-words in expression.
      
      Specifically this optimization was enforced for expression like
      "+word1 +word2*", but wasn't enforced for expression like
      "+word1 word2*".
      
      
      mysql-test/r/fulltext.result:
        A test case for BUG#29445.
      mysql-test/t/fulltext.test:
        A test case for BUG#29445.
      storage/myisam/ft_boolean_search.c:
        Do not perform index search for a plus-word with truncation operator
        in case there are other plus-words in expression.
        
        Specifically this optimization was enforced for expression like
        "+word1 +word2*", but wasn't enforced for expression like
        "+word1 word2*".
      43e8245e
    • unknown's avatar
      Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.1-maint · 816cc183
      unknown authored
      into  mysql.com:/home/ram/work/mysql-5.1-maint
      
      816cc183
    • unknown's avatar
      Fix for bug #29652: csv.test failure: two changes conflict after merge · 2166719e
      unknown authored
      Problem: we don't take into account the length of the data written
      to the temporary data file during update on a CSV table.
      
      Fix: properly calculate the data file length during update.
      
      
      mysql-test/r/csv.result:
        Fix for bug #29652: csv.test failure: two changes conflict after merge
          - test result adjusted.
      storage/csv/ha_tina.cc:
        Fix for bug #29652: csv.test failure: two changes conflict after merge
          - adjust local_saved_data_file_length in case of update as well.
      storage/csv/ha_tina.h:
        Fix for bug #29652: csv.test failure: two changes conflict after merge
          - adjust local_saved_data_file_length in case of update as well.
      2166719e
    • unknown's avatar
      Merge tulin@bk-internal.mysql.com:/home/bk/mysql-5.1-new-maint · 0361ba61
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-maint
      
      
      mysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result:
        Auto merged
      0361ba61
    • unknown's avatar
      Bug #29570 · 0df2e765
      unknown authored
      - correct result files
      
      0df2e765
  7. 09 Jul, 2007 20 commits
    • unknown's avatar
      Bug #29634: mysqld_safe does not set err_log variable, error log file is not created · 54921b0c
      unknown authored
      Dont touch & chmod the err_log file if using syslog (mysqld_safe)
      
      
      scripts/mysqld_safe.sh:
        Dont touch & chmod the err_log file if using syslog
      54921b0c
    • unknown's avatar
      Merge sita.local:/Users/tsmith/m/bk/maint/50 · 4c5260de
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/51
      
      4c5260de
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-maint · 2565cefd
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/50
      
      2565cefd
    • unknown's avatar
      mysqld_safe.sh: · 6698555d
      unknown authored
        Fix a few typos in comments (from Paul DuBois)
      
      
      scripts/mysqld_safe.sh:
        Fix a few typos in comments (from Paul DuBois)
      6698555d
    • unknown's avatar
      Merge sita.local:/Users/tsmith/m/bk/maint/50 · 00d15cbd
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/51
      
      
      mysql-test/suite/rpl/r/rpl_misc_functions.result:
        Auto merged
      mysql-test/suite/rpl/t/rpl_misc_functions.test:
        Auto merged
      00d15cbd
    • unknown's avatar
      rpl_misc_functions.result, rpl_misc_functions.test: · 5fab7895
      unknown authored
        Backport from 5.1 a fix to make this test deterministic
      
      
      mysql-test/r/rpl_misc_functions.result:
        Backport from 5.1 a fix to make this test deterministic
      mysql-test/t/rpl_misc_functions.test:
        Backport from 5.1 a fix to make this test deterministic
      5fab7895
    • unknown's avatar
      Merge sita.local:/Users/tsmith/m/bk/maint/50 · 8545bbe7
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/51
      
      
      sql/log.cc:
        Auto merged
      8545bbe7
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1-maint · 7fab14bd
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/51
      
      
      mysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result:
        Auto merged
      7fab14bd
    • unknown's avatar
      Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-maint · 5c00b8f4
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/50
      
      5c00b8f4
    • unknown's avatar
      Merge chilla.local:/home/mydev/mysql-5.1-ateam · 405d7a2e
      unknown authored
      into  chilla.local:/home/mydev/mysql-5.1-axmrg
      
      405d7a2e
    • unknown's avatar
      Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.1-engines · 1739493e
      unknown authored
      into  mysql.com:/home/svoj/devel/mysql/BUG29464/mysql-5.1-engines
      
      1739493e
    • unknown's avatar
      Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-maint · 17cc1d31
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-maint
      
      17cc1d31
    • unknown's avatar
      Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb · 2e75706e
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-maint
      
      
      storage/ndb/test/run-test/daily-basic-tests.txt:
        Auto merged
      2e75706e
    • unknown's avatar
      Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb · df1bbc8f
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb
      
      
      storage/ndb/src/kernel/blocks/dblqh/Dblqh.hpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp:
        Auto merged
      storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp:
        Auto merged
      storage/ndb/test/ndbapi/testNodeRestart.cpp:
        manual merge
      storage/ndb/test/run-test/daily-basic-tests.txt:
        manual merge
      df1bbc8f
    • unknown's avatar
      Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-ndb · 3163f264
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.1-new-maint
      
      
      mysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result:
        Auto merged
      sql/ha_ndbcluster.cc:
        Auto merged
      sql/log_event.cc:
        manual merge
      3163f264
    • unknown's avatar
      Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb · c853ff77
      unknown authored
      into  whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-maint
      
      c853ff77
    • unknown's avatar
      disabled.def: · cf686f7a
      unknown authored
        post-merge fix: re-enable rpl_udf test
      
      
      mysql-test/suite/rpl/t/disabled.def:
        post-merge fix: re-enable rpl_udf test
      cf686f7a
    • unknown's avatar
      Merge sita.local:/Users/tsmith/m/bk/51 · 78522df2
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/51
      
      This merge requires a post-merge fix to remove rpl_udf from
      suite/rpl/t/disabled.def.
      
      
      mysql-test/lib/mtr_report.pl:
        Auto merged
      mysql-test/r/show_check.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_dd_basic.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_dd_ddl.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_gis.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_row_format.result:
        Auto merged
      mysql-test/suite/ndb/r/ndb_single_user.result:
        Auto merged
      mysql-test/suite/ndb/t/ndb_single_user.test:
        Auto merged
      mysql-test/suite/rpl/r/rpl_extraCol_innodb.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_extraCol_myisam.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_incident.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_row_tabledefs_2myisam.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_row_tabledefs_3innodb.result:
        Auto merged
      mysql-test/suite/rpl/r/rpl_sp.result:
        Auto merged
      mysql-test/suite/rpl_ndb/r/rpl_ndb_extraCol.result:
        Auto merged
      sql/field.cc:
        Auto merged
      sql/field.h:
        Auto merged
      sql/log.cc:
        Auto merged
      sql/mysql_priv.h:
        Auto merged
      sql/sql_class.cc:
        Auto merged
      sql/sql_class.h:
        Auto merged
      sql/sql_show.cc:
        Auto merged
      storage/csv/ha_tina.cc:
        Auto merged
      storage/innobase/handler/ha_innodb.cc:
        Auto merged
      mysql-test/r/csv.result:
        Manual merge
      mysql-test/t/csv.test:
        Manual merge
      mysql-test/t/disabled.def:
        Manual merge
      78522df2
    • unknown's avatar
      Merge sita.local:/Users/tsmith/m/bk/maint/41 · d50d93d7
      unknown authored
      into  sita.local:/Users/tsmith/m/bk/maint/50
      
      d50d93d7
    • unknown's avatar
      Bug #29570 · e26e8168
      unknown authored
      - correct result files
      
      e26e8168