1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Add mtr database

This commit is contained in:
unknown
2008-04-02 10:06:36 +02:00
parent bd02573610
commit b832654089
10 changed files with 20 additions and 2 deletions

View File

@ -9,11 +9,13 @@ create user mysqltest_3@localhost;
create user mysqltest_3;
select * from information_schema.SCHEMATA where schema_name > 'm';
CATALOG_NAME SCHEMA_NAME DEFAULT_CHARACTER_SET_NAME DEFAULT_COLLATION_NAME SQL_PATH
NULL mtr latin1 latin1_swedish_ci NULL
NULL mysql latin1 latin1_swedish_ci NULL
NULL test latin1 latin1_swedish_ci NULL
select schema_name from information_schema.schemata;
schema_name
information_schema
mtr
mysql
test
show databases like 't%';
@ -22,6 +24,7 @@ test
show databases;
Database
information_schema
mtr
mysql
test
show databases where `database` = 't%';
@ -351,6 +354,7 @@ create view v0 (c) as select schema_name from information_schema.schemata;
select * from v0;
c
information_schema
mtr
mysql
test
explain select * from v0;