mariadb/mysql-test/suite/pbxt/r/schema.result
2009-08-17 17:57:58 +02:00

15 lines
292 B
Text

drop database if exists mysqltest1;
create schema foo;
show create schema foo;
Database Create Database
foo CREATE DATABASE `foo` /*!40100 DEFAULT CHARACTER SET latin1 */
create table t1 (id int) engine=pbxt;
show schemas;
Database
information_schema
foo
mtr
mysql
pbxt
test
drop schema foo;