From a68fb2d8219f6bccc573009600e9f23e89226a5e Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:04:16 +0200 Subject: Adding upstream version 1:10.6.11. Signed-off-by: Daniel Baumann --- mysql-test/main/lock_multi_bug38691.result | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 mysql-test/main/lock_multi_bug38691.result (limited to 'mysql-test/main/lock_multi_bug38691.result') diff --git a/mysql-test/main/lock_multi_bug38691.result b/mysql-test/main/lock_multi_bug38691.result new file mode 100644 index 00000000..55836e16 --- /dev/null +++ b/mysql-test/main/lock_multi_bug38691.result @@ -0,0 +1,27 @@ +SET @odl_sync_frm = @@global.sync_frm; +SET @@global.sync_frm = OFF; +connect locker,localhost,root,,; +connect writer,localhost,root,,; +connection default; +DROP TABLE IF EXISTS t1,t2,t3; +CREATE TABLE t1 ( +a int(11) unsigned default NULL, +b varchar(255) default NULL, +UNIQUE KEY a (a), +KEY b (b) +); +INSERT INTO t1 VALUES (1, 1), (2, 2), (3, 3); +CREATE TABLE t2 SELECT * FROM t1; +CREATE TABLE t3 SELECT * FROM t1; +# test altering of columns that multiupdate doesn't use +# normal mode +# PS mode +# test altering of columns that multiupdate uses +# normal mode +connection default; +# PS mode +connection default; +DROP TABLE t1, t2, t3; +disconnect locker; +disconnect writer; +SET @@global.sync_frm = @odl_sync_frm; -- cgit v1.2.3