1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Merge branch '11.4' into 11.5

This commit is contained in:
Oleksandr Byelkin
2024-05-23 17:01:43 +02:00
1470 changed files with 43538 additions and 14960 deletions

View File

@ -377,6 +377,39 @@ SHOW CREATE DATABASE db1;
Database Create Database
db1 CREATE DATABASE `db1` /*!40100 DEFAULT CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci */
DROP DATABASE Db1;
USE test;
# End of 10.4 tests
#
# MDEV-32973 SHOW TABLES LIKE shows temporary tables with non-matching names
#
create temporary table t2 (a int);
create temporary table T1 (a int);
show tables;
Tables_in_test
t1
t2
show tables like 't1';
Tables_in_test (t1)
t1
show tables like 'T1';
Tables_in_test (T1)
t1
select table_name from information_schema.tables where table_schema='test'
and table_name='t1';
table_name
t1
select table_name from information_schema.tables where table_schema='test'
and table_name='T1';
table_name
t1
show tables like '_1';
Tables_in_test (_1)
t1
show tables like 't%';
Tables_in_test (t%)
t1
t2
# End of 11.2 tests
#
# MDEV-32026 lowercase_table2.test failures in 11.3
#
@ -422,6 +455,39 @@ SHOW CREATE DATABASE db1;
Database Create Database
db1 CREATE DATABASE `db1` /*!40100 DEFAULT CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci */
DROP DATABASE Db1;
USE test;
# End of 10.4 tests
#
# MDEV-32973 SHOW TABLES LIKE shows temporary tables with non-matching names
#
create temporary table t2 (a int);
create temporary table T1 (a int);
show tables;
Tables_in_test
t1
t2
show tables like 't1';
Tables_in_test (t1)
t1
show tables like 'T1';
Tables_in_test (T1)
t1
select table_name from information_schema.tables where table_schema='test'
and table_name='t1';
table_name
t1
select table_name from information_schema.tables where table_schema='test'
and table_name='T1';
table_name
t1
show tables like '_1';
Tables_in_test (_1)
t1
show tables like 't%';
Tables_in_test (t%)
t1
t2
# End of 11.2 tests
#
# MDEV-33110 HANDLER commands are case insensitive with lower-case-table-names=0
#