summaryrefslogtreecommitdiff
path: root/mysql-test/t/schema.test
diff options
context:
space:
mode:
authorunknown <brian@avenger.(none)>2004-10-01 12:39:11 -0700
committerunknown <brian@avenger.(none)>2004-10-01 12:39:11 -0700
commitd352949e1afb658cee7d0be64fe6eba2b89898be (patch)
tree698b999a8fe37eb1751e20a3ef989ef1b0313b13 /mysql-test/t/schema.test
parenta930fd3e565a1287cf95eaba37816c521a2df044 (diff)
downloadmariadb-git-d352949e1afb658cee7d0be64fe6eba2b89898be.tar.gz
Update to add keyword "SCHEMA" and "SCHEMAS". Small test case was added too.
sql/lex.h: Update to add compatibility keyword "SCHEMA"
Diffstat (limited to 'mysql-test/t/schema.test')
-rw-r--r--mysql-test/t/schema.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/schema.test b/mysql-test/t/schema.test
new file mode 100644
index 00000000000..d9bd607b2db
--- /dev/null
+++ b/mysql-test/t/schema.test
@@ -0,0 +1,8 @@
+#
+# Just a couple of tests to make sure that schema works.
+#
+
+create schema foo;
+show create schema foo;
+show schemas;
+drop schema foo;