summaryrefslogtreecommitdiff
path: root/mysql-test/t/user_var-binlog.test
diff options
context:
space:
mode:
authorMichael Widenius <monty@mariadb.org>2018-03-09 14:05:35 +0200
committerMonty <monty@mariadb.org>2018-03-29 13:59:44 +0300
commita7abddeffa6a760ce948c2dfb007cdf3f1a369d5 (patch)
tree70eb743fa965a17380bbc0ac88ae79ca1075b896 /mysql-test/t/user_var-binlog.test
parentab1941266c59a19703a74b5593cf3f508a5752d7 (diff)
downloadmariadb-git-a7abddeffa6a760ce948c2dfb007cdf3f1a369d5.tar.gz
Create 'main' test directory and move 't' and 'r' there
Diffstat (limited to 'mysql-test/t/user_var-binlog.test')
-rw-r--r--mysql-test/t/user_var-binlog.test24
1 files changed, 0 insertions, 24 deletions
diff --git a/mysql-test/t/user_var-binlog.test b/mysql-test/t/user_var-binlog.test
deleted file mode 100644
index 0098f237de9..00000000000
--- a/mysql-test/t/user_var-binlog.test
+++ /dev/null
@@ -1,24 +0,0 @@
-# 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).
-let $MYSQLD_DATADIR= `select @@datadir`;
-flush logs;
---exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000001
-drop table t1;
-
-# End of 4.1 tests