diff options
author | unknown <kent@mysql.com> | 2005-07-05 17:27:37 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-07-05 17:27:37 +0200 |
commit | d2119109848ec7129ce5372507f36a7f339cdb1a (patch) | |
tree | a57d5e057865335385b15fc2f6360c1ca0b3e825 /mysql-test/r/lowercase_table2.result | |
parent | 5842bccf6d3655b2388674ee1133583441dfe5ea (diff) | |
download | mariadb-git-d2119109848ec7129ce5372507f36a7f339cdb1a.tar.gz |
lowercase_table2.test, lowercase_table2.result:
Use IF EXISTS in initiation section
mysql-test/r/lowercase_table2.result:
Use IF EXISTS in initiation section
mysql-test/t/lowercase_table2.test:
Use IF EXISTS in initiation section
Diffstat (limited to 'mysql-test/r/lowercase_table2.result')
-rw-r--r-- | mysql-test/r/lowercase_table2.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/lowercase_table2.result b/mysql-test/r/lowercase_table2.result index f93a10dfbad..44235cbf900 100644 --- a/mysql-test/r/lowercase_table2.result +++ b/mysql-test/r/lowercase_table2.result @@ -1,7 +1,7 @@ DROP TABLE IF EXISTS t1,t2,t3,t2aA,t1Aa; DROP DATABASE IF EXISTS `TEST_$1`; DROP DATABASE IF EXISTS `test_$1`; -DROP DATABASE mysqltest_LC2; +DROP DATABASE IF EXISTS mysqltest_LC2; CREATE TABLE T1 (a int); INSERT INTO T1 VALUES (1); SHOW TABLES LIKE "T1"; |