1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +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,9 @@
drop database if exists MySQLTest;
create database MySQLTest;
use MySQLTest;
create table TaB (Field int);
create view ViE as select * from TAb;
show create table VIe;
Table Create Table
vie CREATE VIEW `mysqltest`.`vie` AS select `mysqltest`.`tab`.`Field` AS `Field` from `mysqltest`.`tab`
drop database MySQLTest;