1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +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

@ -18,7 +18,6 @@ drop table t3;
create table t1 (a int);
select count(*) from T1;
select count(*) from t1;
--error 1109
select count(T1.a) from t1;
--error 1109
select count(bags.a) from t1 as Bags;