1. 11 Aug, 2008 2 commits
  2. 10 Aug, 2008 2 commits
  3. 09 Aug, 2008 7 commits
  4. 08 Aug, 2008 2 commits
  5. 07 Aug, 2008 1 commit
  6. 06 Aug, 2008 2 commits
  7. 04 Aug, 2008 5 commits
    • Magnus Svensson's avatar
      Merge · ed8bc526
      Magnus Svensson authored
      ed8bc526
    • Magnus Svensson's avatar
    • Magnus Svensson's avatar
    • Magnus Svensson's avatar
    • Sven Sandberg's avatar
      merged 5.1 main to 5.1-rpl · 73e25337
      Sven Sandberg authored
      manually resolved conflicts:
      Text conflict in client/mysqltest.c
      Contents conflict in mysql-test/include/have_bug25714.inc
      Text conflict in mysql-test/include/have_ndbapi_examples.inc
      Text conflict in mysql-test/mysql-test-run.pl
      Text conflict in mysql-test/suite/parts/inc/partition_check_drop.inc
      Text conflict in mysql-test/suite/parts/inc/partition_layout.inc
      Text conflict in mysql-test/suite/parts/inc/partition_layout_check1.inc
      Text conflict in mysql-test/suite/parts/inc/partition_layout_check2.inc
      Text conflict in mysql-test/suite/parts/r/partition_alter1_1_2_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_alter1_1_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_alter1_2_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_alter2_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_alter3_innodb.result
      Text conflict in mysql-test/suite/parts/r/partition_alter3_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_basic_innodb.result
      Text conflict in mysql-test/suite/parts/r/partition_basic_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_basic_symlink_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_engine_myisam.result
      Text conflict in mysql-test/suite/parts/r/partition_syntax_myisam.result
      Text conflict in mysql-test/suite/rpl_ndb/t/disabled.def
      Text conflict in mysql-test/t/disabled.def
      73e25337
  8. 01 Aug, 2008 3 commits
  9. 31 Jul, 2008 1 commit
    • He Zhenxing's avatar
      BUG#37051 Replication rules not evaluated correctly · e6ac8830
      He Zhenxing authored
      The problem of this bug is that we need to get the list of tables
      to be updated for a multi-table update statement, which requires to
      open all the tables referenced by the statement and resolve all
      the fields involved in update in order to figure out the list of
      tables for update. However if there are replicate filter rules,
      some tables might not exist on slave and result in a failure
      before we could examine the filter rules.
      
      I think the whole problem can not be solved on slave alone,
      the master must record and send the information of tables
      involved for update to slave, so that the slave do not need to
      open all the tables referenced by the multi-table update statement to
      figure out which tables are involved for update.
      
      So a status variable is added to Query_log event to store the
      value of table map for update on master. And on slave, it will
      try to get the value of this variable and use it to examine
      filter rules without opening any tables on slave, if this values
      is not available, the old approach is used and thus the bug will
      still occur for when replicating from old masters.
      e6ac8830
  10. 30 Jul, 2008 1 commit
  11. 28 Jul, 2008 1 commit
  12. 25 Jul, 2008 2 commits
  13. 24 Jul, 2008 7 commits
  14. 23 Jul, 2008 1 commit
    • Sven Sandberg's avatar
      BUG#37717: rpl.rpl_stm_until 'stmt' fails sporadically on pushbuild · b6545b30
      Sven Sandberg authored
      Problem: After START SLAVE, the Slave_IO_Status column of
      SHOW SLAVE STATUS goes from No to Yes asynchronously. That
      caused sporadic failures on pushbuild in rpl_stm_until since
      the test contains SHOW SLAVE STATUS right after START SLAVE.
      Fix: Wait until Slave_IO_Status becomes Yes after each
      START SLAVE.
      b6545b30
  15. 22 Jul, 2008 3 commits