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:
11
mysql-test/t/lowercase_view.test
Normal file
11
mysql-test/t/lowercase_view.test
Normal 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;
|
Reference in New Issue
Block a user