mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	into pilot.(none):/data/msvensson/mysql/bug28369/my51-bug28369 mysql-test/include/master-slave.inc: Auto merged mysql-test/t/innodb.test: Auto merged mysql-test/t/mysqlbinlog-cp932.test: Auto merged mysql-test/t/mysqlbinlog.test: Auto merged mysql-test/t/mysqldump.test: Auto merged mysql-test/t/rpl_rotate_logs.test: Auto merged mysql-test/t/sp_trans.test: Auto merged mysql-test/extra/binlog_tests/blackhole.test: Auto merged mysql-test/extra/binlog_tests/ctype_cp932_binlog.test: Auto merged mysql-test/extra/binlog_tests/ctype_ucs_binlog.test: Auto merged mysql-test/extra/binlog_tests/drop_temp_table.test: Auto merged mysql-test/extra/binlog_tests/insert_select-binlog.test: Auto merged mysql-test/extra/binlog_tests/mix_innodb_myisam_binlog.test: Auto merged BitKeeper/deleted/.del-sp_trans_log.test: Delete: mysql-test/t/sp_trans_log.test BitKeeper/deleted/.del-sp_trans_log.result: Delete: mysql-test/r/sp_trans_log.result BitKeeper/deleted/.del-ctype_cp932_notembedded.result~f8bc6ad0446e82e3: SCCS merged BitKeeper/deleted/.del-ctype_cp932_notembedded.test~3047e508460cef42: SCCS merged mysql-test/extra/binlog_tests/binlog.test: Merge 5.0->5.1 mysql-test/lib/mtr_cases.pl: Merge 5.0->5.1 mysql-test/r/sp_trans.result: Merge 5.0->5.1 mysql-test/t/mysqlbinlog2.test: Merge 5.0->5.1 mysql-test/t/rpl000017.test: Merge 5.0->5.1 mysql-test/t/rpl_000015.test: Merge 5.0->5.1 mysql-test/t/user_var-binlog.test: Merge 5.0->5.1
		
			
				
	
	
		
			25 lines
		
	
	
		
			781 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			781 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Requires statement logging
 | |
| -- source include/have_binlog_format_mixed_or_statement.inc
 | |
| # TODO: Create row based version once $MYSQL_BINLOG has new RB version
 | |
| 
 | |
| # Check that user variables are binlogged correctly (BUG#3875)
 | |
| create table t1 (a varchar(50));
 | |
| reset master;
 | |
| SET TIMESTAMP=10000;
 | |
| SET @`a b`='hello';
 | |
| INSERT INTO t1 VALUES(@`a b`);
 | |
| set @var1= "';aaa";
 | |
| SET @var2=char(ascii('a'));
 | |
| insert into t1 values (@var1),(@var2);
 | |
| source include/show_binlog_events.inc;
 | |
| 
 | |
| # more important than SHOW BINLOG EVENTS, mysqlbinlog (where we
 | |
| # absolutely need variables names to be quoted and strings to be
 | |
| # escaped).
 | |
| --replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
 | |
| flush logs;
 | |
| --exec $MYSQL_BINLOG --short-form $MYSQLTEST_VARDIR/log/master-bin.000001 
 | |
| drop table t1;
 | |
| 
 | |
| # End of 4.1 tests
 |