diff options
author | unknown <anozdrin/alik@quad.> | 2008-02-27 22:53:54 +0300 |
---|---|---|
committer | unknown <anozdrin/alik@quad.> | 2008-02-27 22:53:54 +0300 |
commit | da413e421730946eff1fe2b6ea4fe1eb391f644e (patch) | |
tree | 9a861caf3393eab30d5820b31f89b8eaf6594d33 /mysql-test/t/information_schema.test | |
parent | 6dd9666d0f8bc40dbba44688c87a5dec1f08cef4 (diff) | |
download | mariadb-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.test | 2 |
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; |