1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

After merge fix

mysql-test/t/lowercase_table.test:
  MySQL 4.1 does this correct
This commit is contained in:
unknown
2003-06-04 23:17:01 +03:00
parent 13f7e49494
commit c6c60f6ee8
8 changed files with 27 additions and 18 deletions

View File

@ -21,7 +21,9 @@ select count(*) from t1;
count(*)
0
select count(T1.a) from t1;
Unknown table 'T1' in field list
count(T1.a)
0
select count(bags.a) from t1 as Bags;
Unknown table 'bags' in field list
count(bags.a)
0
drop table t1;