summaryrefslogtreecommitdiff
path: root/mysql-test/t/warnings.test
diff options
context:
space:
mode:
authorunknown <venu@myvenu.com>2003-01-07 18:59:08 -0800
committerunknown <venu@myvenu.com>2003-01-07 18:59:08 -0800
commitdb67a2ee6149b16c4976ddd510e62d35c6eb8a9f (patch)
tree0037dc5a0037e6dd01c3bb6cb7e38ad591e558ba /mysql-test/t/warnings.test
parente3494520c9d88a8b44b6237cfdb141fd85760c7f (diff)
downloadmariadb-git-db67a2ee6149b16c4976ddd510e62d35c6eb8a9f.tar.gz
Simple misc cases - warnings
Diffstat (limited to 'mysql-test/t/warnings.test')
-rw-r--r--mysql-test/t/warnings.test7
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;