summaryrefslogtreecommitdiff
path: root/mysql-test/t/information_schema.test
diff options
context:
space:
mode:
authorunknown <anozdrin/alik@quad.>2008-02-27 22:53:54 +0300
committerunknown <anozdrin/alik@quad.>2008-02-27 22:53:54 +0300
commitda413e421730946eff1fe2b6ea4fe1eb391f644e (patch)
tree9a861caf3393eab30d5820b31f89b8eaf6594d33 /mysql-test/t/information_schema.test
parent6dd9666d0f8bc40dbba44688c87a5dec1f08cef4 (diff)
downloadmariadb-git-da413e421730946eff1fe2b6ea4fe1eb391f644e.tar.gz
Fix information_schema.test to be case-insensitive.
Diffstat (limited to 'mysql-test/t/information_schema.test')
-rw-r--r--mysql-test/t/information_schema.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/information_schema.test b/mysql-test/t/information_schema.test
index 6e76a043645..2d8a2b738ee 100644
--- a/mysql-test/t/information_schema.test
+++ b/mysql-test/t/information_schema.test
@@ -1194,7 +1194,7 @@ select count(*) from INFORMATION_SCHEMA.TABLES where TABLE_SCHEMA='' AND TABLE_N
#
CREATE VIEW v1
AS SELECT *
-FROM INFORMATION_SCHEMA.TABLES;
+FROM information_schema.tables;
SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS where TABLE_NAME = 'v1';
DROP VIEW v1;