mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
11 lines
354 B
Text
11 lines
354 B
Text
-- source include/testdb_only.inc
|
|
|
|
use INFORMATION_SCHEMA;
|
|
--replace_result Tables_in_INFORMATION_SCHEMA Tables_in_information_schema
|
|
show tables;
|
|
--replace_result 'Tables_in_INFORMATION_SCHEMA (T%)' 'Tables_in_information_schema (T%)'
|
|
show tables from INFORMATION_SCHEMA like 'T%';
|
|
create database `inf%`;
|
|
use `inf%`;
|
|
show tables;
|
|
drop database `inf%`;
|