1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge 11.4 into 11.6

This commit is contained in:
Marko Mäkelä
2024-10-03 16:09:56 +03:00
561 changed files with 5812 additions and 1412 deletions

View File

@ -2,9 +2,6 @@
# Test of --lower-case-table-names
#
#remove this include after fix MDEV-27944
--source include/no_view_protocol.inc
show variables like "lower_case_table_names";
create table T1 (id int primary key, Word varchar(40) not null, Index(Word));
@ -38,8 +35,10 @@ drop table t1;
create database mysqltest;
use MYSQLTEST;
create table t1 (a int);
--disable_service_connection
select T1.a from MYSQLTEST.T1;
select t1.a from MYSQLTEST.T1;
--enable_service_connection
select mysqltest.t1.* from MYSQLTEST.t1;
select MYSQLTEST.t1.* from MYSQLTEST.t1;
select MYSQLTEST.T1.* from MYSQLTEST.T1;