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

ixed table and db name of fields incase of lower_case_table_names (BUG#5154)

This commit is contained in:
bell@sanja.is.com.ua
2004-09-07 19:58:02 +03:00
parent c84eeefef4
commit 48a1b10b58
4 changed files with 42 additions and 3 deletions

View File

@ -0,0 +1,11 @@
--disable_warnings
drop database if exists MySQLTest;
--enable_warnings
create database MySQLTest;
use MySQLTest;
create table TaB (Field int);
create view ViE as select * from TAb;
show create table VIe;
drop database MySQLTest;