diff options
Diffstat (limited to 'mysql-test/r/schema.result')
-rw-r--r-- | mysql-test/r/schema.result | 10 |
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; |