1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Bug#30795 Query on INFORMATION_SCHEMA.SCHEMATA, wrong result

skip the check of directory presence for 'information_schema' name
This commit is contained in:
gluh@mysql.com/eagle.(none)
2007-09-28 17:33:30 +05:00
parent ccccad7058
commit 1494eabc85
3 changed files with 12 additions and 1 deletions

View File

@@ -1188,4 +1188,10 @@ FROM INFORMATION_SCHEMA.TABLES;
SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS where TABLE_NAME = 'v1';
DROP VIEW v1;
#
# Bug#30795 Query on INFORMATION_SCHEMA.SCHEMATA, wrong result
#
SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA
WHERE SCHEMA_NAME ='information_schema';
--echo End of 5.1 tests.