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 | 5050b850d83dd9abd5f5b8dd7fbca9624da7e59f (patch) | |
tree | 0514d0f3949422f7745fa055599bcf1f1b015c42 /mysql-test/r/lowercase_table2.result | |
parent | 61abd6e8d29bcc9249660e76a05ac06b8ad867d7 (diff) | |
parent | 1144c6ba197bd53c821e7019782303ff07223923 (diff) | |
download | mariadb-git-5050b850d83dd9abd5f5b8dd7fbca9624da7e59f.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; |