mirror of
https://github.com/MariaDB/server.git
synced 2025-10-19 21:09:40 +03:00
into pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.1-build-work-nn mysql-test/t/mysqlbinlog.test: Auto merged mysql-test/t/mysqltest.test: Auto merged mysql-test/t/sp_trans.test: Auto merged mysql-test/t/user_var-binlog.test: Auto merged BitKeeper/deleted/.del-ctype_cp932_notembedded.test~3047e508460cef42: 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 mysql-test/extra/binlog_tests/binlog.test: needs no change in 5.1 as it is in a separate folder mysql-test/r/binlog_stm_mix_innodb_myisam.result: needs regeneration mysql-test/t/mysqlbinlog-cp932.test: needs no change because already has dependency on binlog format mysql-test/t/mysqlbinlog2.test: needs no change because already has dependency on binlog format
28 lines
895 B
Plaintext
28 lines
895 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
|
|
# Embedded server does not support binlogging
|
|
--source include/not_embedded.inc
|
|
--source include/have_log_bin.inc
|
|
|
|
# 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
|