1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fuller implementation of lower case table names.

Bug record #828
This commit is contained in:
Sinisa@sinisa.nasamreza.org
2003-07-23 17:36:56 +03:00
parent 40756106a9
commit e08a00bd02
7 changed files with 25 additions and 5 deletions

View File

@ -21,7 +21,8 @@ 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
drop table t1;