summaryrefslogtreecommitdiff
path: root/mysql-test/r/schema.result
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/r/schema.result
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/r/schema.result')
-rw-r--r--mysql-test/r/schema.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/r/schema.result b/mysql-test/r/schema.result
new file mode 100644
index 00000000000..d7bd6fef655
--- /dev/null
+++ b/mysql-test/r/schema.result
@@ -0,0 +1,10 @@
+create schema foo;
+show create schema foo;
+Database Create Database
+foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
+show schemas;
+Database
+foo
+mysql
+test
+drop schema foo;