diff options
author | guilhem@mysql.com <> | 2005-01-16 21:39:21 +0100 |
---|---|---|
committer | guilhem@mysql.com <> | 2005-01-16 21:39:21 +0100 |
commit | 05793bb9b92bd29fd1409c664b5da05955b45324 (patch) | |
tree | 22c11c7fe0d89e79bf5d07bc49b61253a14dd905 /mysql-test/t/user_var.test | |
parent | 1cb5d98d85dd055c7255b7a77f71dd91760cd14b (diff) | |
parent | 6412558d03f7f8a5c6734644e403f2bcef1aa5f7 (diff) | |
download | mariadb-git-05793bb9b92bd29fd1409c664b5da05955b45324.tar.gz |
Merge
Diffstat (limited to 'mysql-test/t/user_var.test')
-rw-r--r-- | mysql-test/t/user_var.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/t/user_var.test b/mysql-test/t/user_var.test index ae8e3ccf841..49cf981b966 100644 --- a/mysql-test/t/user_var.test +++ b/mysql-test/t/user_var.test @@ -108,7 +108,8 @@ SET TIMESTAMP=10000; SET @`a b`='hello'; INSERT INTO t1 VALUES(@`a b`); set @var1= "';aaa"; -insert into t1 values (@var1); +SET @var2=char(ascii('a')); +insert into t1 values (@var1),(@var2); show binlog events from 95; # more important than SHOW BINLOG EVENTS, mysqlbinlog (where we # absolutely need variables names to be quoted and strings to be |