mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
(Part#2) MDEV-13049 Querying INFORMATION_SCHEMA becomes slow in MariaDB 10.1
This is a 10.3 specific part of MDEV-13049. It disables automatic sorting for "SELECT .. FROM INFORMATION_SCHEMA.{SCHEMATA|TABLES}" and adjusts the affected tests accordingly.
This commit is contained in:
@ -59,7 +59,8 @@ eval SHOW COLUMNS FROM information_schema.$is_table;
|
||||
# Show that CATALOG_NAME and SQL_PATH are always NULL.
|
||||
SELECT catalog_name, schema_name, sql_path
|
||||
FROM information_schema.schemata
|
||||
WHERE catalog_name IS NOT NULL or sql_path IS NOT NULL;
|
||||
WHERE catalog_name IS NOT NULL or sql_path IS NOT NULL
|
||||
ORDER BY schema_name;
|
||||
|
||||
|
||||
--echo ###############################################################################
|
||||
|
Reference in New Issue
Block a user