diff options
author | unknown <ram@gw.mysql.r18.ru> | 2005-01-25 16:42:16 +0400 |
---|---|---|
committer | unknown <ram@gw.mysql.r18.ru> | 2005-01-25 16:42:16 +0400 |
commit | f332605b1fea680dd6d7fa1ee55d35395baa6083 (patch) | |
tree | 06a4ede541c80a3af715fd289b279ebbadfb962a /mysql-test/t/lowercase_table2.test | |
parent | 4992049337493c6195bb2707c22d5c5eae23beb5 (diff) | |
download | mariadb-git-f332605b1fea680dd6d7fa1ee55d35395baa6083.tar.gz |
tT replaced with T1 to be more predictable.
Diffstat (limited to 'mysql-test/t/lowercase_table2.test')
-rw-r--r-- | mysql-test/t/lowercase_table2.test | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/t/lowercase_table2.test b/mysql-test/t/lowercase_table2.test index 237dcd29950..a766e39abab 100644 --- a/mysql-test/t/lowercase_table2.test +++ b/mysql-test/t/lowercase_table2.test @@ -10,7 +10,7 @@ show variables like "lower_case_table_names"; enable_query_log; --disable_warnings -DROP TABLE IF EXISTS t1,t2,T1,T2,t3,T3,tT; +DROP TABLE IF EXISTS t1,t2,T1,T2,t3,T3; DROP DATABASE IF EXISTS `TEST_$1`; DROP DATABASE IF EXISTS `test_$1`; --enable_warnings @@ -105,9 +105,9 @@ drop table t1; # Bug #7261: Alter table loses temp table # -create temporary table tT(a int(11), b varchar(8)); -insert into tT values (1, 'abc'); -select * from tT; -alter table tT add index (a); -select * from tT; -drop table tT; +create temporary table T1(a int(11), b varchar(8)); +insert into T1 values (1, 'abc'); +select * from T1; +alter table T1 add index (a); +select * from T1; +drop table T1; |