1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

Merge branch 'bb-10.7-all-builders' into bb-10.8-all-builders

This commit is contained in:
Lena Startseva
2022-09-27 18:12:06 +07:00
321 changed files with 2211 additions and 199 deletions

View File

@ -505,6 +505,7 @@ drop table t1;
# Bug #14400 Join could miss concurrently inserted row
#
# Partial key.
--disable_service_connection
create table t1 (a int not null, primary key(a));
create table t2 (a int not null, b int not null, primary key(a,b));
insert into t1 values (1),(2),(3),(4),(5),(6);
@ -536,7 +537,7 @@ SELECT t1.c1 AS t1c1, t2.c1 AS t2c1 FROM t1, t2
WHERE t1.c1 = t2.c1 HAVING t1c1 != t2c1;
UNLOCK TABLES;
DROP TABLE t1,t2;
--enable_service_connection
# End of 4.0 tests
#