diff options
author | gluh@mysql.com <> | 2006-06-14 10:54:56 +0500 |
---|---|---|
committer | gluh@mysql.com <> | 2006-06-14 10:54:56 +0500 |
commit | a1020c6e4de4d65566d4c356b864d559787a6896 (patch) | |
tree | 0514d0f3949422f7745fa055599bcf1f1b015c42 /mysql-test/r/lowercase_table2.result | |
parent | 02c25f8055ea3829d9c92a00dd9f4e21b74702cd (diff) | |
parent | 8acb6eeb80e9fd48f2eb075b76021d59432a0996 (diff) | |
download | mariadb-git-a1020c6e4de4d65566d4c356b864d559787a6896.tar.gz |
post-merge fix
Diffstat (limited to 'mysql-test/r/lowercase_table2.result')
-rw-r--r-- | mysql-test/r/lowercase_table2.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/lowercase_table2.result b/mysql-test/r/lowercase_table2.result index a55ebaf7766..51c2ac0faf5 100644 --- a/mysql-test/r/lowercase_table2.result +++ b/mysql-test/r/lowercase_table2.result @@ -165,3 +165,12 @@ create table t1Aa (col1 int); select t1Aa.col1 from t1aA,t2Aa where t1Aa.col1 = t2aA.col1; col1 drop table t2aA, t1Aa; +create database mysqltest_LC2; +use mysqltest_LC2; +create table myUC (i int); +select TABLE_SCHEMA,TABLE_NAME FROM information_schema.TABLES +where TABLE_SCHEMA ='mysqltest_LC2'; +TABLE_SCHEMA TABLE_NAME +mysqltest_LC2 myUC +use test; +drop database mysqltest_LC2; |