1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00

Merge branch '10.6' into 10.9

This commit is contained in:
Oleksandr Byelkin
2023-08-04 08:01:06 +02:00
858 changed files with 12277 additions and 6177 deletions

View File

@@ -44,7 +44,9 @@ CREATE TABLE t2(c1 INT);
let $prefix= `SELECT UUID()`;
--echo # Create a file in the database directory
--replace_result $prefix FAKE_FILE
--disable_ps2_protocol
eval SELECT 'hello' INTO OUTFILE 'fake_file.$prefix';
--enable_ps2_protocol
--echo
--echo # 'DROP DATABASE' will fail if there is any other file in the the

View File

@@ -68,7 +68,9 @@ INSERT INTO t1 VALUES (1);
CREATE SEQUENCE s ENGINE=InnoDB;
XA START '2';
--disable_ps2_protocol
SELECT NEXT VALUE FOR s;
--enable_ps2_protocol
REPLACE INTO t1 SELECT * FROM t1;
XA END '2';
XA PREPARE '2';

View File

@@ -41,6 +41,7 @@ INSERT INTO t2 VALUES(2);
--echo # lock that will prevent the source table from being modified.
--echo #
--disable_ps2_protocol
--connection con1
SELECT GET_LOCK('Bug#34306', 120);
--connection con2
@@ -87,6 +88,7 @@ INSERT INTO t2 VALUES (4);
SELECT RELEASE_LOCK('Bug#34306');
--connection con2
--reap
--enable_ps2_protocol
--disconnect con1
--disconnect con2

View File

@@ -573,7 +573,9 @@ END|
RESET MASTER;
CALL proc_insert_delayed();
--disable_ps2_protocol
SELECT func_limit();
--enable_ps2_protocol
source include/show_binlog_events.inc;
SET @@session.binlog_format = @old_binlog_format;