summaryrefslogtreecommitdiff
path: root/mysql-test/t/information_schema.test
diff options
context:
space:
mode:
authorunknown <timour@askmonty.org>2012-12-18 12:44:15 +0200
committerunknown <timour@askmonty.org>2012-12-18 12:44:15 +0200
commitfef08da3e742fb54d1b827f117d4bbe9aa554b5f (patch)
treebf58ffadbc5071582660049db30f3399170cb1c0 /mysql-test/t/information_schema.test
parent2dbce3d0896d571c7ffd631beeac4a6a902bea17 (diff)
downloadmariadb-git-fef08da3e742fb54d1b827f117d4bbe9aa554b5f.tar.gz
MDEV-3818: Query against view over IS tables worse than equivalent query without view
Fixed the test to be lower-case because it fails on windows with mixed case.
Diffstat (limited to 'mysql-test/t/information_schema.test')
-rw-r--r--mysql-test/t/information_schema.test12
1 files changed, 6 insertions, 6 deletions
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test
index 9ed61a90be2..b6ee712ec28 100644
--- a/mysql-test/t/information_schema.test
+++ b/mysql-test/t/information_schema.test
@@ -1794,16 +1794,16 @@ disconnect con12828477_3;
--echo # MDEV-3818: Query against view over IS tables worse than equivalent query without view
--echo #
-CREATE VIEW v1 AS SELECT TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS;
+create view v1 as select table_schema, table_name, column_name from information_schema.columns;
explain extended
-SELECT column_name FROM v1
-WHERE (TABLE_SCHEMA = "osm") AND (TABLE_NAME = "test");
+select column_name from v1
+where (table_schema = "osm") and (table_name = "test");
explain extended
-SELECT INFORMATION_SCHEMA.COLUMNS.COLUMN_NAME AS COLUMN_NAME
-FROM INFORMATION_SCHEMA.COLUMNS
-WHERE (information_schema.COLUMNS.TABLE_SCHEMA = 'osm') and (information_schema.COLUMNS.TABLE_NAME = 'test');
+select information_schema.columns.column_name as column_name
+from information_schema.columns
+where (information_schema.columns.table_schema = 'osm') and (information_schema.columns.table_name = 'test');
drop view v1;