1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix for bug #10659: information_schema_db fail on Mac OS

This commit is contained in:
gluh@gluh.mysql.r18.ru
2005-05-24 14:35:23 +04:00
parent 181f21c5d2
commit 077346c746
2 changed files with 4 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
use INFORMATION_SCHEMA;
show tables;
Tables_in_INFORMATION_SCHEMA
Tables_in_information_schema
SCHEMATA
TABLES
COLUMNS
@@ -17,7 +17,7 @@ COLUMN_PRIVILEGES
TABLE_CONSTRAINTS
KEY_COLUMN_USAGE
show tables from INFORMATION_SCHEMA like 'T%';
Tables_in_INFORMATION_SCHEMA (T%)
Tables_in_information_schema (T%)
TABLES
TABLE_PRIVILEGES
TABLE_CONSTRAINTS

View File

@@ -1,7 +1,9 @@
-- 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%`;