diff options
author | unknown <gluh@mysql.com> | 2006-06-14 10:54:56 +0500 |
---|---|---|
committer | unknown <gluh@mysql.com> | 2006-06-14 10:54:56 +0500 |
commit | e30a2aea7486156e0da13ea6db2ff54882ae4fcc (patch) | |
tree | 0514d0f3949422f7745fa055599bcf1f1b015c42 /mysql-test/r/lowercase_table2.result | |
parent | 2ecd916de6f0daebb22f79cd6f0ad09f581c2aec (diff) | |
parent | 57e7bc551300b224404b3ce1a5498917f9ead689 (diff) | |
download | mariadb-git-e30a2aea7486156e0da13ea6db2ff54882ae4fcc.tar.gz |
post-merge fix
mysql-test/r/information_schema.result:
Auto merged
mysql-test/r/lowercase_table2.result:
Auto merged
sql/item_strfunc.h:
Auto merged
sql/sql_show.cc:
Auto merged
mysql-test/t/information_schema.test:
manual merge
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; |