mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Test suites for engine testing, moved from test-extra so will be available
for general use. mysql-test/Makefile.am: Adding directories of additional test suites mysql-test/mysql-stress-test.pl: Adding check for additional errors checking during test run
This commit is contained in:
41
mysql-test/suite/engines/funcs/r/db_create_drop.result
Normal file
41
mysql-test/suite/engines/funcs/r/db_create_drop.result
Normal file
@ -0,0 +1,41 @@
|
||||
DROP DATABASE IF EXISTS d1;
|
||||
CREATE DATABASE d1;
|
||||
SHOW DATABASES;
|
||||
Database
|
||||
information_schema
|
||||
d1
|
||||
mtr
|
||||
mysql
|
||||
test
|
||||
SHOW DATABASES LIKE 'd%';
|
||||
Database (d%)
|
||||
d1
|
||||
SHOW DATABASES LIKE '%';
|
||||
Database (%)
|
||||
information_schema
|
||||
d1
|
||||
mtr
|
||||
mysql
|
||||
test
|
||||
USE d1;
|
||||
DROP DATABASE d1;
|
||||
CREATE SCHEMA d1;
|
||||
SHOW SCHEMAS;
|
||||
Database
|
||||
information_schema
|
||||
d1
|
||||
mtr
|
||||
mysql
|
||||
test
|
||||
SHOW SCHEMAS LIKE 'd%';
|
||||
Database (d%)
|
||||
d1
|
||||
SHOW SCHEMAS LIKE '%';
|
||||
Database (%)
|
||||
information_schema
|
||||
d1
|
||||
mtr
|
||||
mysql
|
||||
test
|
||||
USE d1;
|
||||
DROP SCHEMA d1;
|
Reference in New Issue
Block a user