mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
10 lines
190 B
Text
10 lines
190 B
Text
|
-- source include/testdb_only.inc
|
||
|
|
||
|
use INFORMATION_SCHEMA;
|
||
|
show tables;
|
||
|
show tables from INFORMATION_SCHEMA like 'T%';
|
||
|
create database `inf%`;
|
||
|
use `inf%`;
|
||
|
show tables;
|
||
|
drop database `inf%`;
|