summaryrefslogtreecommitdiff
path: root/mysql-test/r/lowercase_table.result
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-09-07 15:14:32 +0300
committermonty@mashka.mysql.fi <>2003-09-07 15:14:32 +0300
commit80565e13527206b0e8fac4a1f01cea96dd23423a (patch)
treebe7b1a2d3f4e095333e132c4c05dff1654b94589 /mysql-test/r/lowercase_table.result
parentbebe295dfed41e11e3e52abb1f66ce7ce82706f9 (diff)
parent08e5b18fa25940975ecc58e3ea0755ee4c427800 (diff)
downloadmariadb-git-80565e13527206b0e8fac4a1f01cea96dd23423a.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mashka.mysql.fi:/home/my/mysql-tmp
Diffstat (limited to 'mysql-test/r/lowercase_table.result')
-rw-r--r--mysql-test/r/lowercase_table.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/lowercase_table.result b/mysql-test/r/lowercase_table.result
index af4e2300088..dc5ae633ca5 100644
--- a/mysql-test/r/lowercase_table.result
+++ b/mysql-test/r/lowercase_table.result
@@ -6,6 +6,14 @@ id Word
1 a
2 b
3 c
+SELECT T1.id from T1 LIMIT 1;
+id
+1
+SELECT T2.id from t1 as T2 LIMIT 1;
+id
+1
+SELECT T2.id from t1 as t2 LIMIT 1;
+Unknown table 'T2' in field list
RENAME TABLE T1 TO T2;
ALTER TABLE T2 ADD new_col int not null;
ALTER TABLE T2 RENAME T3;