mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
8661497e9b
- Update mysql-test-run.pl to collect tests from several suites - Group test into suites - Add suite.opt file
13 lines
303 B
Text
13 lines
303 B
Text
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;
|