blob: e3da4af026508f0e53cf4299c9b282a5ae9ca01c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
drop database if exists mysqltest;
create database mysqltest;
create table mysqltest.t1 (a int primary key, b int) engine=ndb;
use mysqltest;
show tables;
Tables_in_mysqltest
t1
drop database mysqltest;
create database mysqltest;
use mysqltest;
show tables;
Tables_in_mysqltest
drop database mysqltest;
|