diff options
author | unknown <sergefp@mysql.com> | 2007-07-02 22:18:41 +0400 |
---|---|---|
committer | unknown <sergefp@mysql.com> | 2007-07-02 22:18:41 +0400 |
commit | b0696f545706255cbedf291b0e8f70aa10410b79 (patch) | |
tree | 6b18f461a1ee85be0c4f39587f5b87e98e381955 /mysql-test/t/innodb_mysql.test | |
parent | 07dcc80023674120eb84d41a37dd748da8e00de7 (diff) | |
download | mariadb-git-b0696f545706255cbedf291b0e8f70aa10410b79.tar.gz |
Fix testcase to be platform-independent
Diffstat (limited to 'mysql-test/t/innodb_mysql.test')
-rw-r--r-- | mysql-test/t/innodb_mysql.test | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mysql-test/t/innodb_mysql.test b/mysql-test/t/innodb_mysql.test index eb995a748a5..148181ee443 100644 --- a/mysql-test/t/innodb_mysql.test +++ b/mysql-test/t/innodb_mysql.test @@ -1,7 +1,7 @@ -- source include/have_innodb.inc --disable_warnings -drop table if exists t1,t2; +drop table if exists t1,t2,t3,t4; --enable_warnings # BUG#16798: Uninitialized row buffer reads in ref-or-null optimizer @@ -709,12 +709,14 @@ set @@sort_buffer_size=8192; SELECT COUNT(*) FROM t1; +--replace_column 9 # EXPLAIN SELECT COUNT(*) FROM t1 WHERE (c >= '2007-01-02' AND c <= '2007-01-03') OR b >= 1; SELECT COUNT(*) FROM t1 WHERE (c >= '2007-01-02' AND c <= '2007-01-03') OR b >= 1; +--replace_column 9 # EXPLAIN SELECT COUNT(*) FROM t1 FORCE INDEX(idx_b, idx_c) WHERE (c >= '2007-01-02' AND c <= '2007-01-03') OR b >= 1; |