mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-27 05:56:07 +03:00 
			
		
		
		
	into neptunus.(none):/home/msvensson/mysql/mysqltest_var/my51-mysqltest_var mysql-test/mysql-test-run.sh: Auto merged mysql-test/extra/binlog_tests/blackhole.test: Auto merged mysql-test/extra/binlog_tests/ctype_ucs_binlog.test: Auto merged mysql-test/extra/rpl_tests/rpl_EE_err.test: Auto merged mysql-test/extra/rpl_tests/rpl_log.test: Auto merged mysql-test/extra/rpl_tests/rpl_stm_000001.test: Auto merged mysql-test/extra/rpl_tests/rpl_stm_charset.test: Auto merged mysql-test/r/backup.result: Auto merged mysql-test/r/loaddata.result: Auto merged mysql-test/r/query_cache.result: Auto merged mysql-test/r/rpl_loaddata_s.result: Auto merged mysql-test/r/rpl_replicate_do.result: Auto merged mysql-test/r/rpl_rewrt_db.result: Auto merged mysql-test/r/rpl_stm_000001.result: Auto merged mysql-test/r/trigger.result: Auto merged mysql-test/r/view.result: Auto merged mysql-test/r/warnings.result: Auto merged mysql-test/t/backup.test: Auto merged mysql-test/t/loaddata.test: Auto merged mysql-test/t/mysqldump.test: Auto merged mysql-test/t/ndb_autodiscover.test: Auto merged mysql-test/t/query_cache.test: Auto merged mysql-test/t/rpl_000015-slave.sh: Auto merged mysql-test/t/rpl_flushlog_loop-master.opt: Auto merged mysql-test/t/rpl_flushlog_loop-master.sh: Auto merged mysql-test/t/rpl_flushlog_loop-slave.opt: Auto merged mysql-test/t/rpl_flushlog_loop-slave.sh: Auto merged mysql-test/t/rpl_loaddata_s.test: Auto merged mysql-test/t/rpl_replicate_do.test: Auto merged mysql-test/t/rpl_rewrt_db.test: Auto merged mysql-test/t/rpl_rotate_logs.test: Auto merged mysql-test/t/show_check.test: Auto merged mysql-test/t/sp-destruct.test: Auto merged mysql-test/t/symlink.test: Auto merged mysql-test/t/trigger.test: Auto merged mysql-test/t/user_var-binlog.test: Auto merged mysql-test/t/view.test: Auto merged mysql-test/t/warnings.test: Auto merged mysql-test/mysql-test-run.pl: Merge 5.0 -> 5.1 mysql-test/r/binlog_stm_blackhole.result: Merge 5.0 -> 5.1 mysql-test/r/mysqltest.result: Merge 5.0 -> 5.1 mysql-test/r/rpl_loaddata.result: Merge 5.0 -> 5.1 mysql-test/r/rpl_loaddata_m.result: Merge 5.0 -> 5.1 mysql-test/r/rpl_stm_log.result: Merge 5.0 -> 5.1 mysql-test/r/rpl_timezone.result: Merge 5.0 -> 5.1 mysql-test/t/mysqlbinlog.test: Merge 5.0 -> 5.1 mysql-test/t/mysqlbinlog2.test: Merge 5.0 -> 5.1 mysql-test/t/mysqltest.test: Merge 5.0 -> 5.1 mysql-test/t/rpl_drop_db.test: Merge 5.0 -> 5.1 mysql-test/t/rpl_loaddata.test: Merge 5.0 -> 5.1 mysql-test/t/rpl_loaddata_m.test: Merge 5.0 -> 5.1 mysql-test/t/rpl_timezone.test: Merge 5.0 -> 5.1 mysql-test/t/trigger-compat.test: Merge 5.0 -> 5.1 mysql-test/t/trigger-grant.test: Merge 5.0 -> 5.1
		
			
				
	
	
		
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # TBF - difference in row level logging
 | |
| -- source include/have_binlog_format_statement.inc
 | |
| -- source include/master-slave.inc
 | |
| 
 | |
| --disable_warnings
 | |
| drop database if exists mysqltest1;
 | |
| --enable_warnings
 | |
| create database mysqltest1;
 | |
| 
 | |
| use mysqltest1;
 | |
| create table t1 (a int);
 | |
| insert into t1 values(9);
 | |
| select * from mysqltest1.t1;
 | |
| sync_slave_with_master;
 | |
| show databases like 'mysqltest1'; # should be empty
 | |
| select * from test.t1;
 | |
| # cleanup
 | |
| connection master;
 | |
| drop table t1;
 | |
| drop database mysqltest1;
 | |
| sync_slave_with_master;
 | |
| 
 | |
| #
 | |
| # BUG#6353:
 | |
| #   Option --replicate-rewrite-db should work together with LOAD DATA INFILE
 | |
| #
 | |
| 
 | |
| connection slave;
 | |
| --disable_warnings
 | |
| drop database if exists rewrite;
 | |
| --enable_warnings
 | |
| create database rewrite;
 | |
| 
 | |
| connection master;
 | |
| use test;
 | |
| create table t1 (a date, b date, c date not null, d date);
 | |
| load data infile '../std_data_ln/loaddata1.dat' into table t1 fields terminated by ',';
 | |
| load data infile '../std_data_ln/loaddata1.dat' into table t1 fields terminated by ',' IGNORE 2 LINES;
 | |
| sync_slave_with_master;
 | |
| 
 | |
| connection slave;
 | |
| select * from rewrite.t1;
 | |
| 
 | |
| connection master;
 | |
| truncate table t1;
 | |
| load data infile '../std_data_ln/loaddata1.dat' into table t1 fields terminated by ',' LINES STARTING BY ',' (b,c,d);
 | |
| sync_slave_with_master;
 | |
| 
 | |
| connection slave;
 | |
| select * from rewrite.t1;
 | |
| 
 | |
| connection master;
 | |
| drop table t1;
 | |
| create table t1 (a text, b text);
 | |
| load data infile '../std_data_ln/loaddata2.dat' into table t1 fields terminated by ',' enclosed by '''';
 | |
| sync_slave_with_master;
 | |
| 
 | |
| connection slave;
 | |
| select concat('|',a,'|'), concat('|',b,'|') from rewrite.t1;
 | |
| 
 | |
| connection master;
 | |
| drop table t1;
 | |
| create table t1 (a int, b char(10));
 | |
| load data infile '../std_data_ln/loaddata3.dat' into table t1 fields terminated by '' enclosed by '' ignore 1 lines;
 | |
| sync_slave_with_master;
 | |
| 
 | |
| connection slave;
 | |
| select * from rewrite.t1;
 | |
| 
 | |
| connection master;
 | |
| truncate table t1;
 | |
| load data infile '../std_data_ln/loaddata4.dat' into table t1 fields terminated by '' enclosed by '' lines terminated by '' ignore 1 lines;
 | |
| sync_slave_with_master;
 | |
| 
 | |
| connection slave;
 | |
| # The empty line last comes from the end line field in the file
 | |
| select * from rewrite.t1;
 | |
| 
 | |
| drop database rewrite;
 | |
| 
 | |
| connection master;
 | |
| drop table t1;
 | |
| 
 | |
| # End of 4.1 tests
 |