1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-21 06:21:35 +03:00
Files
mariadb/mysql-test/suite/pbxt/r/schema.result
2011-07-14 18:25:05 +02:00

17 lines
311 B
Plaintext

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
performance_schema
test
drop schema foo;