mariadb/mysql-test/suite/rpl/t
Mats Kindahl 2c5f439d65 BUG#49618: Field length stored incorrectly in binary log
for InnoDB
            
The class Field_bit_as_char stores the metadata for the
field incorrecly because bytes_in_rec and bit_len are set
to (field_length + 7 ) / 8 and 0 respectively, while
Field_bit has the correct values field_length / 8 and
field_length % 8.
            
Solved the problem by re-computing the values for the
metadata based on the field_length instead of using the
bytes_in_rec and bit_len variables.
            
To handle compatibility with old server, a table map
flag was added to indicate that the bit computation is
exact. If the flag is clear, the slave computes the
number of bytes required to store the bit field and
compares that instead, effectively allowing replication
*without conversion* from any field length that require
the same number of bytes to store.


mysql-test/suite/rpl/t/rpl_typeconv_innodb.test:
  Adding test to check compatibility for bit field
  replication when using InnoDB
sql/field.cc:
  Extending compatible_field_size() with flags from
  table map to allow fields to check master info.
sql/field.h:
  Extending compatible_field_size() with flags from
  table map to allow fields to check master info.
sql/log.cc:
  Removing table map flags since they are not used
  outside table map class.
sql/log_event.cc:
  Removing flags parameter from table map constructor
  since it is not used and does not have to be exposed.
sql/log_event.h:
  Adding flag to denote that bit length for bit field type
  is exact and not potentially rounded to even bytes.
sql/rpl_utility.cc:
  Adding fields to table_def to store table map flags.
sql/rpl_utility.h:
  Removing obsolete comment and adding flags to store
  table map flags from master.
2010-03-17 15:28:49 +01:00
..
disabled.def Bug #43913 rpl_cross_version can't pass on conflicts complainig clash with --slave-load-tm 2009-09-27 18:12:58 +08:00
rpl000010-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl000010.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl000011.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl000013.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl000017-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl000017-slave.sh WL#4189 2007-12-12 18:19:24 +01:00
rpl000017.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_000015-slave.opt WL#4189 2007-12-12 18:19:24 +01:00
rpl_000015.cnf Make it possible to specify test specifi config file as <testname>.cnf 2008-04-25 14:07:17 +02:00
rpl_000015.test Fix for versional test 2008-01-14 15:38:02 +08:00
rpl_alter.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_alter_db.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_auto_increment-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_auto_increment.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_auto_increment_11932.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_auto_increment_update_failure.test Bug #45677 Slave stops with Duplicate entry for key PRIMARY when using trigger 2009-10-01 07:19:36 +08:00
rpl_begin_commit_rollback-slave.opt Merge BUG#43263 from 5.0-bugteam to 5.1-bugteam 2009-05-31 13:44:41 +08:00
rpl_begin_commit_rollback.test Merge BUG#43263 from 5.0-bugteam to 5.1-bugteam 2009-05-31 13:44:41 +08:00
rpl_binlog_corruption-master.opt BUG#40482: server/mysqlbinlog crashes when reading invalid Incident_log_event 2008-12-29 17:04:10 +01:00
rpl_binlog_corruption.test BUG#41793 rpl_binlog_corruption disabled in main (needs new mtr) 2009-04-15 12:43:17 +01:00
rpl_binlog_grant.test Added clean up for test case: to replicate drop of database to slave 2008-04-05 21:33:42 +04:00
rpl_binlog_max_cache_size-master.opt BUG#43929 binlog corruption when max_binlog_cache_size is exceeded 2009-06-18 14:52:46 +01:00
rpl_binlog_max_cache_size.test BUG#43929 binlog corruption when max_binlog_cache_size is exceeded 2009-06-18 14:52:46 +01:00
rpl_binlog_query_filter_rules-master.opt Bug#36099 replicate-do-db affects replaying RBR events with mysqlbinlog 2008-09-03 13:01:18 +03:00
rpl_binlog_query_filter_rules.test Post-merge fixes. 2008-10-07 10:25:12 +02:00
rpl_bit.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_bit_npk.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_blackhole.test merged 5.1-main -> 5.1-bugteam 2009-01-30 15:44:49 +02:00
rpl_bug26395.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_bug31076.test BUG#32407: Impossible to do point-in-time recovery from older binlog 2007-12-14 19:02:02 +01:00
rpl_bug33931.test Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log 2009-08-28 16:13:27 +02:00
rpl_bug38694-slave.opt moving bug#38694 test files into rpl suite 2009-04-30 16:20:38 +03:00
rpl_bug38694.test moving bug#38694 test files into rpl suite 2009-04-30 16:20:38 +03:00
rpl_change_master.test WL#4091, replace sleeps 2008-02-28 14:36:14 +03:00
rpl_charset.test The test rpl_row_charset and it dependent rpl_ndb_charset is 2008-02-13 11:37:06 +01:00
rpl_charset_sjis.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_circular_for_4_hosts.cnf WL#3754, circular replication tests 2008-04-25 20:54:42 +04:00
rpl_circular_for_4_hosts.test Post-merge fixes to fix test cases. 2008-10-29 18:38:18 +01:00
rpl_colSize.test Fix for versional test 2008-01-14 15:38:02 +08:00
rpl_commit_after_flush.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_concurrency_error-master.opt BUG#44581 Slave stops when transaction with non-transactional table gets lock wait 2009-07-06 09:02:14 +01:00
rpl_concurrency_error.test BUG#46130 Slave does not correctly handle "expected errors" 2009-08-13 17:21:01 +01:00
rpl_create_database-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_create_database-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_create_database.test Fix for versional test 2008-01-14 15:38:02 +08:00
rpl_create_if_not_exists.test BUG#45574 CREATE IF NOT EXISTS is not binlogged if the object exists 2009-08-13 10:48:57 +08:00
rpl_create_tmp_table_if_not_exists.test BUG#45574 CREATE IF NOT EXISTS is not binlogged if the object exists 2009-08-13 10:48:57 +08:00
rpl_critical_errors.test WL#4091, part1. replace --sleep by include/wait_condition.inc 2007-12-06 18:27:10 +03:00
rpl_cross_version-master.opt Bug #31240 load data infile replication between (4.0 or 4.1) and 5.1 fails 2009-01-27 13:33:30 +02:00
rpl_cross_version.test commenting windows disable for rpl_cross_version to relate to Bug #42879 2009-02-16 14:51:39 +02:00
rpl_ddl.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_deadlock_innodb-slave.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_deadlock_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_delete_no_where.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_do_grant.test automerge 2009-09-18 16:35:40 +03:00
rpl_drop.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_drop_db.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_drop_if_exists.test BUG#13684: post push fix for test case. 2009-02-11 18:46:43 +01:00
rpl_drop_temp-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_drop_temp.test BUG#47014: rpl_drop_temp fails on PB-2 with results mismatch 2009-09-13 21:52:14 +01:00
rpl_drop_view.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_dual_pos_advance-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_dual_pos_advance.test BUG#37718: rpl.rpl_stm_mystery22 fails sporadically on pushbuild 2009-01-09 15:12:31 +01:00
rpl_EE_err.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_empty_master_crash-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_empty_master_crash.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_err_ignoredtable-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_err_ignoredtable.test manual merge of 28141 2009-10-20 11:00:07 -07:00
rpl_events.test Bug #44331 Restore of database with events produces warning in replication 2009-08-31 10:26:01 +08:00
rpl_extraCol_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_extraCol_myisam.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_extraColmaster_innodb.test .del-rpl_stm_extraColmaster_ndb.test~5ac81fa1ec366ba: 2007-10-10 16:43:20 +02:00
rpl_extraColmaster_myisam.test .del-rpl_stm_extraColmaster_ndb.test~5ac81fa1ec366ba: 2007-10-10 16:43:20 +02:00
rpl_failed_optimize-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_failed_optimize.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_filter_tables_not_exist-slave.opt Cherry picking patch for BUG#37051 2008-08-26 18:01:49 +08:00
rpl_filter_tables_not_exist.test BUG#37718: rpl.rpl_stm_mystery22 fails sporadically on pushbuild 2009-01-09 15:12:31 +01:00
rpl_flushlog_loop-master.opt WL#4189 2007-12-12 18:19:24 +01:00
rpl_flushlog_loop-master.sh WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_flushlog_loop-slave.opt WL#4189 2007-12-12 18:19:24 +01:00
rpl_flushlog_loop-slave.sh WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_flushlog_loop.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_foreign_key_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_found_rows.test Merge magare.gmz:/home/kgeorge/mysql/work/B36011-take2-5.0-bugteam 2008-05-16 19:03:50 +03:00
rpl_free_items-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_free_items.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_get_lock.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_get_master_version_and_clock-slave.opt Bug #46828 rpl_get_master_version_and_clock fails on PB-2 2009-10-29 10:26:59 +08:00
rpl_get_master_version_and_clock.test Bug #46828 rpl_get_master_version_and_clock fails on PB-2 2009-10-29 10:26:59 +08:00
rpl_grant.test Fix for versional test 2008-01-14 15:38:02 +08:00
rpl_idempotency-slave.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_idempotency.test Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log 2009-08-25 15:56:50 +02:00
rpl_ignore_grant-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_grant.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_revoke-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_revoke.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_table-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_table.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_ignore_table_update-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ignore_table_update.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_incident-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_incident.test Bug#38077. 2009-05-02 23:28:54 +04:00
rpl_init_slave-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_init_slave.test Bug#44920: MTR2 is not processing master.opt input properly on Windows. 2009-07-06 18:20:17 -04:00
rpl_init_slave_errors.test Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log 2009-08-28 16:13:27 +02:00
rpl_innodb-master.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_innodb.test BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_innodb_bug28430-master.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_innodb_bug28430-slave.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_innodb_bug28430.test BUG#36379: please re-enable rpl_innodb_bug28430 2008-05-07 12:57:07 +02:00
rpl_innodb_bug30888.test Changes for pushbuild test runs and VSC compile warnings 2007-09-12 18:16:50 -07:00
rpl_innodb_mixed_ddl.test Bug#29363 2007-06-29 21:09:00 +04:00
rpl_innodb_mixed_dml.test Bug#29363 2007-06-29 21:09:00 +04:00
rpl_insert.test BUG#37933: Test "rpl_insert" fails - timing problem in replication test ? 2008-07-07 17:38:47 +02:00
rpl_insert_id.test Merge magare.gmz:/home/kgeorge/mysql/work/B36011-take2-5.0-bugteam 2008-05-16 19:03:50 +03:00
rpl_insert_id_pk.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_insert_ignore.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_insert_select.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_invoked_features.test Bug#32663, Bug#33045, Bug#23533, WL#4091 2008-02-29 00:50:15 +03:00
rpl_killed_ddl-master.opt Manually merge BUG#37145 to 5.1-bugteam 2009-04-09 07:42:51 +08:00
rpl_killed_ddl.test Manually merge BUG#37145 to 5.1-bugteam 2009-04-09 07:42:51 +08:00
rpl_known_bugs_detection-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_known_bugs_detection.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_LD_INFILE.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_load_from_master-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_load_from_master.test Merge pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-rpl 2008-02-28 12:21:44 +01:00
rpl_load_table_from_master.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_loaddata.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_loaddata_charset.test Manual Merge 2009-08-12 13:31:56 +08:00
rpl_loaddata_fatal-slave.opt Move disabling of rpl_invoked_features to suite/rpl/t/disabled.def 2007-06-27 16:49:32 +02:00
rpl_loaddata_fatal.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_loaddata_m-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_loaddata_m.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_loaddata_map-master.opt Minor fix to make rpl_loaddata_map pass without warnings. 2008-02-04 06:49:15 +01:00
rpl_loaddata_map-slave.opt Fixes to make tests pass on pushbuild. 2008-01-31 15:53:47 +01:00
rpl_loaddata_map.test BUG#38178: rpl_loaddata_map fails sporadically in pushbuild 2008-07-18 13:34:19 +02:00
rpl_loaddata_s-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_loaddata_s.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_loaddata_simple.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_loaddatalocal.test Bug#43746: YACC return wrong query string when parse 'load data infile' sql statement 2009-09-28 05:41:10 -07:00
rpl_loadfile.test Worked around the problem described in bug #43884. 2009-03-27 12:59:31 +02:00
rpl_locale.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_log_pos.test added suppressions for existing warnings in the result file. 2009-09-24 16:19:06 +03:00
rpl_many_optimize.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_master_pos_wait.test Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl 2008-03-12 13:07:35 +01:00
rpl_misc_functions-slave.sh WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_misc_functions.test Post-merge fixes. 2008-10-07 10:25:12 +02:00
rpl_mixed_bit_pk.test BUG#39753: Replication failure on MIXED + bit + myisam + no PK 2009-03-05 20:54:53 +01:00
rpl_mixed_ddl_dml.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_delete-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_delete.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_delete2-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_delete2.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_engine.test BUG#40707 rpl_multi_engine fails sporadically in pushbuild 2008-11-24 14:57:23 +08:00
rpl_multi_update.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_update2-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_update2.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_multi_update3.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_multi_update4-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_multi_update4.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_mysql_upgrade.test BUG#43579 mysql_upgrade tries to alter log tables on replicated database 2009-09-28 14:24:19 +08:00
rpl_name_const.test Manually merge BUG#37145 to 5.1-bugteam 2009-04-09 07:42:51 +08:00
rpl_optimize.test BUG#34768 - nondeterministic INSERT using LIMIT logged in stmt mode 2008-03-25 17:28:12 +04:00
rpl_packet-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_packet-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_packet.test added suppressions for existing warnings in the result file. 2009-09-24 16:19:06 +03:00
rpl_plugin_load-master.opt Bug#35807 - INSTALL PLUGIN replicates row-based, but not stmt-based 2008-08-19 17:35:56 +02:00
rpl_plugin_load-slave.opt Bug#35807 - INSTALL PLUGIN replicates row-based, but not stmt-based 2008-08-19 17:35:56 +02:00
rpl_plugin_load.test Bug#35807 - INSTALL PLUGIN replicates row-based, but not stmt-based 2008-08-19 17:35:56 +02:00
rpl_ps.test Fixing some missing table drops. 2008-10-07 14:22:28 +02:00
rpl_rbr_to_sbr.test BUG#37733: rpl.rpl_flushlog_loop 'row' fails sporadically on pushbuild 2008-07-16 11:17:10 +02:00
rpl_read_only.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_relay_space_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_relay_space_myisam.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_relayrotate-slave.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_relayrotate.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_relayspace-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_relayspace.test WL#4091, replace sleeps 2008-02-28 14:36:14 +03:00
rpl_replicate_do-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_replicate_do.test WL#4189 2007-12-12 18:19:24 +01:00
rpl_replicate_ignore_db-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_replicate_ignore_db.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_report-slave.opt Bug #28780 report_host is not available through SELECT @@report_host 2008-03-05 12:25:55 +02:00
rpl_report.test Bug #28780 report_host is not available through SELECT @@report_host 2008-03-07 14:39:37 +02:00
rpl_rewrt_db-slave.opt merge mysql-5.0-bugteam --> mysql-5.1-bugteam 2009-08-28 10:45:57 +01:00
rpl_rewrt_db.test merge mysql-5.0-bugteam --> mysql-5.1-bugteam 2009-08-28 10:45:57 +01:00
rpl_rotate_logs-slave.opt WL#4189 2007-12-12 18:19:24 +01:00
rpl_rotate_logs-slave.sh WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_rotate_logs.cnf Make it possible to specify test specifi config file as <testname>.cnf 2008-04-25 14:07:17 +02:00
rpl_rotate_logs.test BUG#39858 rpl.rpl_rotate (rpl.rpl_rotate_logs) failed on pushbuild: result mismatch 2009-03-12 17:48:41 +08:00
rpl_row_001.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_4_bytes-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_4_bytes.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_basic_2myisam.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_basic_3innodb.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_basic_8partition.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_basic_11bugs-master.opt BUG#40257: Please remove --loose-skip-innodb from suite/rpl/rpl_1slave_base.cnf 2008-10-29 14:25:03 +01:00
rpl_row_basic_11bugs.test Bug#31552 Replication breaks when deleting rows from out-of-sync table 2007-12-12 12:14:59 +02:00
rpl_row_blob_innodb.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_blob_myisam.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_colSize.test BUG#22086 : Extra Slave Col: Char(5) on slave and Char(10) on master cause mysqld crash 2007-08-10 12:48:01 -04:00
rpl_row_conflicts.test BUG#37718: rpl.rpl_stm_mystery22 fails sporadically on pushbuild 2009-01-09 15:12:31 +01:00
rpl_row_create_table.test merge: 5.1 -> 5.1-rpl 2009-01-23 13:22:05 +01:00
rpl_row_delayed_ins.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_disabled_slave_key.test BUG#47312: RBR: Disabling key on slave breaks replication: 2009-09-27 22:02:47 +01:00
rpl_row_drop.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_err_daisychain-master.opt Bug#18817, removing --binlog-format option from .opt files 2008-08-13 23:12:51 +04:00
rpl_row_err_daisychain-slave.opt Bug#18817, removing --binlog-format option from .opt files 2008-08-13 23:12:51 +04:00
rpl_row_flsh_tbls.test BUG#29020 (Event results not correctly replicated to slave in RBR): 2008-03-28 13:16:41 +01:00
rpl_row_func001.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_func002.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_func003.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_inexist_tbl.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_row_insert_delayed.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_log_innodb-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_log_innodb.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_max_relay_size.test BUG#38350: Many tests don't clean up after themselves on exit. 2008-11-13 20:19:00 +01:00
rpl_row_mysqlbinlog-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_mysqlbinlog.test BUG#44389 rpl_row_mysqlbinlog fails on windows due to operating system 2009-04-24 02:02:07 +01:00
rpl_row_NOW.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_reset_slave.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp001.test WL#4091, part1. replace --sleep by include/wait_condition.inc 2007-12-06 18:27:10 +03:00
rpl_row_sp002_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp003.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_sp005.test Merge pilot.mysql.com:/data/msvensson/mysql/mysql-5.1-rpl 2008-02-28 12:21:44 +01:00
rpl_row_sp006_InnoDB.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_sp007_innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp008.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp009.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp010.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp011.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_sp012.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_stop_middle_update-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_stop_middle_update-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_stop_middle_update.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_row_tabledefs_2myisam.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_tabledefs_3innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_trig001.test More fixes to remove test failures in pushbuild. 2008-02-04 12:12:03 +01:00
rpl_row_trig002.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_trig003.test WL#4091, part1. replace --sleep by include/wait_condition.inc 2007-12-06 18:27:10 +03:00
rpl_row_trig004.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_unsafe_funcs.test Bug #30244: row_count/found_rows does not replicate well 2007-08-29 14:54:32 +03:00
rpl_row_until.test Bug#41423. 2009-02-19 23:29:12 +03:00
rpl_row_USER.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_row_UUID.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_row_view01.test WL#4091, replace sleeps 2008-02-28 14:36:14 +03:00
rpl_row_wide_table.test Bug#42977 RBR logs for rows with more than 250 column results in corrupt binlog 2009-03-25 12:53:56 +02:00
rpl_server_id.test Move test rpl_server_id to suite rpl 2007-12-24 15:03:23 +08:00
rpl_server_id1.test merged 5.1 main to 5.1-rpl 2008-08-04 07:04:47 +02:00
rpl_server_id2-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_server_id2.test Bug#38540 rpl_server_id2 uses show slave status unnecessarily 2008-12-19 22:13:12 +02:00
rpl_session_var.test WL#3949, second part. Added soft switching of the binlog format (w/o restart a server) 2007-11-20 19:55:51 +03:00
rpl_set_charset.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sf.test BUG#41166 stored function requires "deterministic" if binlog_format is "statement" 2009-07-28 18:44:38 +01:00
rpl_skip_error-slave.opt Bug #30594 rpl.rpl_skip_error is nondeterministic 2007-10-22 21:45:21 +03:00
rpl_skip_error.test BUG#39393. Post-fix for test rpl_skip_error. 2009-04-08 22:02:19 +01:00
rpl_slave_grp_exec.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_slave_load_in.test Bug #42861 Assigning invalid directories to --slave-load-tmpdir crashes the slave 2009-03-18 10:31:17 +00:00
rpl_slave_load_remove_tmpfile-slave.opt Bug #42861 Assigning invalid directories to --slave-load-tmpdir crashes the slave 2009-03-18 10:31:17 +00:00
rpl_slave_load_remove_tmpfile.test 46996 workaruond 2009-09-01 13:38:17 +02:00
rpl_slave_load_tmpdir_not_exist-slave.opt Bug #42861 Assigning invalid directories to --slave-load-tmpdir crashes the slave 2009-03-18 10:31:17 +00:00
rpl_slave_load_tmpdir_not_exist.test BUG#43949 Initialization of slave produces a warning message in Valgrind 2009-04-19 02:21:33 +01:00
rpl_slave_skip.test merge: 5.1 -> 5.1-rpl 2009-01-23 13:22:05 +01:00
rpl_slave_status.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_sp-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sp-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sp.test Merge 5.0 -> 5.1 of fix for bug 45902 2009-07-02 15:40:27 +02:00
rpl_sp004.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sp_effects-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sp_effects-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sp_effects.test BUG#37975: wait_for_slave_* should increase the timeout 2008-07-10 18:09:39 +02:00
rpl_sporadic_master-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_sporadic_master.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_ssl.test Merge ramayana.hindu.god:/home/tsmith/m/bk/51 2007-12-05 12:33:36 -07:00
rpl_ssl1.test WL#4091, part1. replace --sleep by include/wait_condition.inc 2007-12-06 18:27:10 +03:00
rpl_start_stop_slave-slave.opt Bug#38205 Row-based Replication (RBR) causes inconsistencies: HA_ERR_FOUND_DUP 2009-03-26 10:25:06 +02:00
rpl_start_stop_slave.test Bug #38205 Row-based Replication (RBR) causes inconsistencies: HA_ERR_FOUND_DUPP_KEY 2009-04-09 16:05:41 +03:00
rpl_stm_000001.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_auto_increment_bug33029.test Bug #35675 reset master finds assert if a binlog file can not be deleted 2008-03-30 00:54:08 +02:00
rpl_stm_conflicts.test BUG#37718: rpl.rpl_stm_mystery22 fails sporadically on pushbuild 2009-01-09 15:12:31 +01:00
rpl_stm_EE_err2.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_flsh_tbls.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_insert_delayed.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_loadfile.test BUG#39701: Mixed binlog format does not switch to row mode on 2009-03-24 18:27:33 +00:00
rpl_stm_log-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_log-slave.opt Merging 5.0-bugteam into 5.1-bugteam 2008-09-01 11:00:52 +02:00
rpl_stm_log.test Merge pilot.(none):/data/msvensson/mysql/wl3933/my51-wl3933-new2 2007-06-27 14:29:10 +02:00
rpl_stm_max_relay_size.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_mixing_engines.test BUG#28976 Mixing trans and non-trans tables in one transaction results in incorrect 2009-08-27 00:13:03 +01:00
rpl_stm_multi_query.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_no_op.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_reset_slave.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_stm_until.test BUG#37717: rpl.rpl_stm_until 'stmt' fails sporadically on pushbuild 2008-07-23 13:23:52 +02:00
rpl_switch_stm_row_mixed.test BUG#37200: rpl_switch_stm_row_mixed fails sporadically in pushbuild 2008-07-03 10:27:25 +02:00
rpl_temp_table.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_temp_table_mix_row.test BUG#43046: mixed mode switch to row format with temp table lead 2009-07-26 22:48:24 +01:00
rpl_temporary.test BUG#41725: upmerge: 5.0-bt --> 5.1-bt 2009-05-23 00:29:41 +01:00
rpl_temporary_errors-slave.opt BUG#24860 (Incorrect SLAVE_TRANSACTION_RETRIES code can result in slave stuck): 2007-10-20 20:16:12 +02:00
rpl_temporary_errors.test BUG#39853: lowercase_table3 fails on powermacg5 in rpl tree 2008-10-13 20:33:08 +02:00
rpl_timezone-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_timezone-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_timezone.test Fix test case erro in sles10-ia64-a. 2009-03-25 14:19:42 +08:00
rpl_trigger.test Bug#38603: 2009-02-03 00:26:49 +03:00
rpl_trunc_temp.test BUG#37493: rpl_trunc_temp.test nondeterministic 2008-07-23 12:13:55 +02:00
rpl_truncate_2myisam.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_truncate_3innodb.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_typeconv-slave.opt BUG#49618: Field length stored incorrectly in binary log 2010-03-17 15:28:49 +01:00
rpl_typeconv_innodb.test BUG#49618: Field length stored incorrectly in binary log 2010-03-17 15:28:49 +01:00
rpl_udf-master.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_udf-slave.opt WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_udf.test WL#3933 Split main test suite to rpl, rpl_ndb and ndb 2007-06-27 14:28:02 +02:00
rpl_user.test Merge dl145h.mysql.com:/data0/mkindahl/mysql-5.0-rpl-merge 2008-02-04 12:33:28 +01:00
rpl_user_variables.test BUG#34768 - nondeterministic INSERT using LIMIT logged in stmt mode 2008-03-25 17:28:12 +04:00
rpl_variables.test BUG#38170: rpl_variables failed on pushbuild: could not sync with master 2008-07-17 18:26:59 +02:00
rpl_variables_stm.test Removed pushbuild errors. 2008-03-11 18:43:29 +01:00
rpl_view.test Merge client-10-129-10-147.upp.off.mysql.com:/Users/mattiasj/clones/topush-50-bugteam 2008-05-08 13:45:40 +02:00