From de9d246548cadeeb22dc9902de86ee8c82efa66a Mon Sep 17 00:00:00 2001 From: "ram@gw.mysql.r18.ru" <> Date: Fri, 31 Oct 2003 16:37:36 +0400 Subject: Fixes for mysql tests. --- mysql-test/r/mysqlbinlog.result | 2 +- mysql-test/r/mysqldump.result | 17 +++++++++-------- mysql-test/r/negation_elimination.result | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) (limited to 'mysql-test/r') diff --git a/mysql-test/r/mysqlbinlog.result b/mysql-test/r/mysqlbinlog.result index eeac31ba40b..92453b3e35b 100644 --- a/mysql-test/r/mysqlbinlog.result +++ b/mysql-test/r/mysqlbinlog.result @@ -80,4 +80,4 @@ insert into t1 values ("Alas"); use test; SET TIMESTAMP=1000000000; insert into t1 values ("Alas"); -drop table t1; +drop table t1, t2; diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result index 4f44ec343d6..fa9658c0202 100644 --- a/mysql-test/r/mysqldump.result +++ b/mysql-test/r/mysqldump.result @@ -1,4 +1,4 @@ -DROP TABLE IF EXISTS t1; +DROP TABLE IF EXISTS t1, `"t"1`; CREATE TABLE t1(a int); INSERT INTO t1 VALUES (1), (2); @@ -18,21 +18,22 @@ INSERT INTO t1 VALUES (1), (2); DROP TABLE t1; -CREATE TABLE `t"1` (`a"b"c"` char(2)); -INSERT INTO `t"1` VALUES ("\"1"), ("2\""); +CREATE TABLE `"t"1` (`a"b"` char(2)); +INSERT INTO `"t"1` VALUES ("1\""), ("\"2"); - - + + - + - "1 + 1" - 2" + "2 +DROP TABLE `"t"1`; diff --git a/mysql-test/r/negation_elimination.result b/mysql-test/r/negation_elimination.result index 9a9764c8f18..8ca8ae2f12e 100644 --- a/mysql-test/r/negation_elimination.result +++ b/mysql-test/r/negation_elimination.result @@ -55,7 +55,7 @@ a 10 explain select * from t1 where not(a = 10); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 index NULL a 5 NULL 21 Using where; Using index +1 SIMPLE t1 range a a 5 NULL 19 Using where; Using index select * from t1 where not(a = 10); a 0 -- cgit v1.2.1