1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fuller implementation of lower case table names.

Bug record #828
This commit is contained in:
unknown
2003-07-23 17:36:56 +03:00
parent b3021da20a
commit d289accb0a
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;