Changed mysql-test to print warnings for not existing table to DROP TABLE

Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names.
changed store_warning() -> push_warning_print()
This commit is contained in:
monty@mashka.mysql.fi 2003-01-06 01:48:59 +02:00
commit 1f6ecc0cd3
248 changed files with 1033 additions and 789 deletions

View file

@ -2,7 +2,10 @@
# test of primary key conversions
#
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1 (t1 char(3) primary key);
insert into t1 values("ABC");
insert into t1 values("ABA");