diff options
author | unknown <monty@donna.mysql.com> | 2001-01-03 02:15:48 +0200 |
---|---|---|
committer | unknown <monty@donna.mysql.com> | 2001-01-03 02:15:48 +0200 |
commit | 292ee03bbfff767bcbd9fe3a4f5c4917d64a1d30 (patch) | |
tree | ee1c300b5d4d96d2aa4fd1efea5bbf5e7a01628a /mysql-test/t/sel000001.test | |
parent | 3e5851a879e4ca0a4152adea6b9ea800b515a872 (diff) | |
download | mariadb-git-292ee03bbfff767bcbd9fe3a4f5c4917d64a1d30.tar.gz |
Cleanup of tests to make them less dependent of eachother
Added new big select test
mysql-test/r/rpl000004.a.result:
Cleanup
mysql-test/r/show_check.result:
Cleanup
mysql-test/r/shw000001.result:
Cleanup
mysql-test/t/fulltext_multi.test:
Cleanup
mysql-test/t/fulltext_order_by.test:
Cleanup
mysql-test/t/rpl000001.test:
Cleanup
mysql-test/t/rpl000002.test:
Cleanup
mysql-test/t/rpl000003.test:
Cleanup
mysql-test/t/rpl000004.test:
Cleanup
mysql-test/t/rpl000005.test:
Cleanup
mysql-test/t/rpl000006.test:
Cleanup
mysql-test/t/rpl000007.test:
Cleanup
mysql-test/t/rpl000008.test:
Cleanup
mysql-test/t/rpl000009.test:
Cleanup
mysql-test/t/rpl000010.test:
Cleanup
mysql-test/t/rpl000011.test:
Cleanup
mysql-test/t/rpl000012.test:
Cleanup
mysql-test/t/rpl000013.test:
Cleanup
mysql-test/t/rpl000014.test:
Cleanup
mysql-test/t/rpl000015.test:
Cleanup
mysql-test/t/rpl000016.test:
Cleanup
mysql-test/t/sel000001.test:
Cleanup
mysql-test/t/sel000002.test:
Cleanup
mysql-test/t/sel000003.test:
Cleanup
mysql-test/t/sel000031.test:
Cleanup
mysql-test/t/sel000032.test:
Cleanup
mysql-test/t/sel000033.test:
Cleanup
mysql-test/t/sel000100.test:
Cleanup
mysql-test/t/show_check.test:
Cleanup
mysql-test/t/shw000001.test:
Cleanup
Diffstat (limited to 'mysql-test/t/sel000001.test')
-rw-r--r-- | mysql-test/t/sel000001.test | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mysql-test/t/sel000001.test b/mysql-test/t/sel000001.test index 7f5fb303984..06453fad7cc 100644 --- a/mysql-test/t/sel000001.test +++ b/mysql-test/t/sel000001.test @@ -11,7 +11,8 @@ # Testing WHERE clause. # -DROP TABLE IF EXISTS t; -CREATE TABLE t (s CHAR(20) PRIMARY KEY, id INT); -INSERT INTO t VALUES ('cat', 1), ('mouse', 3), ('dog', 2), ('snake', 77); -@r/sel000001.result SELECT s, id FROM t WHERE s = 'mouse'; +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 (s CHAR(20) PRIMARY KEY, id INT); +INSERT INTO t1 VALUES ('cat', 1), ('mouse', 3), ('dog', 2), ('snake', 77); +@r/sel000001.result SELECT s, id FROM t1 WHERE s = 'mouse'; +drop table t1; |