mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
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
17 lines
282 B
Plaintext
17 lines
282 B
Plaintext
--disable_warnings
|
|
DROP DATABASE IF EXISTS d1;
|
|
--enable_warnings
|
|
CREATE DATABASE d1;
|
|
SHOW DATABASES;
|
|
SHOW DATABASES LIKE 'd%';
|
|
SHOW DATABASES LIKE '%';
|
|
USE d1;
|
|
DROP DATABASE d1;
|
|
CREATE SCHEMA d1;
|
|
SHOW SCHEMAS;
|
|
SHOW SCHEMAS LIKE 'd%';
|
|
SHOW SCHEMAS LIKE '%';
|
|
USE d1;
|
|
DROP SCHEMA d1;
|
|
|