1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Merge branch '11.4' into 11.8

This commit is contained in:
Sergei Golubchik
2025-07-28 20:16:25 +02:00
380 changed files with 11138 additions and 2776 deletions

View File

@@ -7,14 +7,18 @@ SELECT 1 FROM DUAL;
1
1
LOCK TABLE t2 WRITE;
connect node_2_ctrl, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2_ctrl;
SET SESSION wsrep_sync_wait=0;
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2a;
OPTIMIZE TABLE t1,t2;;
connection node_2_ctrl;
SET SESSION wsrep_sync_wait = 0;
connect node_2b, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2b;
REPAIR TABLE t1,t2;;
connection node_2;
SET SESSION wsrep_sync_wait = 0;
connection node_2_ctrl;
connection node_1;
INSERT INTO t2 VALUES (1);
connection node_2;
@@ -34,3 +38,4 @@ DROP TABLE t2;
connection node_1;
disconnect node_2a;
disconnect node_2b;
disconnect node_2_ctrl;