mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	 5435b66b91
			
		
	
	
	5435b66b91
	
	
	
		
			
			mysql-test/extra/rpl_tests/rpl_charset.test: Fix merge error mysql-test/lib/mtr_report.pm: Move the . out of [] to avoid log file parsing errors mysql-test/mysql-test-run.pl: Correct spelling of option sql/ha_ndbcluster_binlog.cc: Fix merge error(used "Use remote")
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			357 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| reset master;
 | |
| drop table if exists t1,t2;
 | |
| create table t1 (word varchar(20)) -- create table t1;
 | |
| create table t2 (word varchar(20)) -- create table t2;
 | |
| load data infile '../../std_data/words.dat' into table t1 -- load data to t1;
 | |
| insert into t2 values ("Ada");
 | |
| flush logs;
 | |
| select * from t2;
 | |
| word
 | |
| Ada
 | |
| flush logs;
 | |
| select * from t2;
 | |
| word
 | |
| Ada
 | |
| drop table t1,t2;
 |