diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-10-31 13:00:20 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-10-31 13:00:20 +0400 |
commit | 5d3ed9acdda80828f7f3be8f7322b3e8366eab5f (patch) | |
tree | f2b0c44e9429a0aaf0d4af63c9a66ae870b2ff35 /mysql-test/t/gis.test | |
parent | 835cbbcc7b797188a89671019f2b2844e1a14e0c (diff) | |
download | mariadb-git-5d3ed9acdda80828f7f3be8f7322b3e8366eab5f.tar.gz |
(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.
Diffstat (limited to 'mysql-test/t/gis.test')
-rw-r--r-- | mysql-test/t/gis.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/gis.test b/mysql-test/t/gis.test index 94e56774bf4..ca806778f0e 100644 --- a/mysql-test/t/gis.test +++ b/mysql-test/t/gis.test @@ -1491,6 +1491,7 @@ SHOW CREATE TABLE information_schema.spatial_ref_sys; create table t1(g GEOMETRY, pt POINT); create table t2(g LINESTRING, pl POLYGON); +--sorted_result select * from information_schema.geometry_columns where f_table_schema='test'; drop table t1, t2; |