diff options
author | Igor Babaev <igor@askmonty.org> | 2013-08-20 13:47:13 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2013-08-20 13:47:13 -0700 |
commit | 99992f6ec4600222fc4312f62287b1a42155ea4c (patch) | |
tree | f8ebc7e0c5752d4cb82cc79e1cbed8c341760d57 /mysql-test/r/null.result | |
parent | 5fdb531d77e025cdf1738c424207b13e0a7608f5 (diff) | |
download | mariadb-git-99992f6ec4600222fc4312f62287b1a42155ea4c.tar.gz |
Fixed a bug/typo in the patch for mdev-4355, noticed after the patch
had been merged into 5.5.
Corrected the result of the output from the test case for mdev 4895.
Diffstat (limited to 'mysql-test/r/null.result')
-rw-r--r-- | mysql-test/r/null.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/null.result b/mysql-test/r/null.result index 647b943df1e..e62ba68c8f6 100644 --- a/mysql-test/r/null.result +++ b/mysql-test/r/null.result @@ -354,7 +354,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE SELECT * FROM t1 WHERE concat( dt, '2012-12-21 12:12:12' ) IS NULL; dt -drop table t1; +DROP TABLE t1; CREATE TABLE t1 (dt INT NOT NULL); INSERT INTO t1 VALUES (1),(2); EXPLAIN @@ -363,7 +363,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE SELECT * FROM t1 WHERE concat( dt, '1' ) IS NULL; dt -drop table t1; +DROP TABLE t1; CREATE TABLE t1 (dt INT NOT NULL); INSERT INTO t1 VALUES (1),(2); EXPLAIN @@ -372,4 +372,4 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL Impossible WHERE SELECT * FROM t1 WHERE NOT (concat( dt, '1' ) IS NOT NULL); dt -drop table t1; +DROP TABLE t1; |