diff options
author | unknown <venu@myvenu.com> | 2003-01-07 18:59:08 -0800 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-01-07 18:59:08 -0800 |
commit | db67a2ee6149b16c4976ddd510e62d35c6eb8a9f (patch) | |
tree | 0037dc5a0037e6dd01c3bb6cb7e38ad591e558ba /mysql-test/t/warnings.test | |
parent | e3494520c9d88a8b44b6237cfdb141fd85760c7f (diff) | |
download | mariadb-git-db67a2ee6149b16c4976ddd510e62d35c6eb8a9f.tar.gz |
Simple misc cases - warnings
Diffstat (limited to 'mysql-test/t/warnings.test')
-rw-r--r-- | mysql-test/t/warnings.test | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index eeb45eaba56..8cff8706c43 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -19,3 +19,10 @@ set SQL_WARNINGS=0; # Test other warnings drop temporary table if exists not_exists; +drop table if exists not_exists_table; +show warnings limit 1; +drop database if exists not_exists_db; +show count(*) warnings; +create table t1(id int); +create table if not exists t1(id int); +select @@warning_count; |