1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Merge branch '11.2' into 11.3

This commit is contained in:
Oleksandr Byelkin
2023-11-14 18:33:03 +01:00
618 changed files with 17156 additions and 9729 deletions

View File

@@ -1,3 +1,7 @@
SET GLOBAL innodb_max_purge_lag_wait=0;
connect stop_purge,localhost,root;
START TRANSACTION WITH CONSISTENT SNAPSHOT;
connection default;
CREATE TABLE t1(c1 INT NOT NULL, c2 INT, PRIMARY KEY(c1)) Engine=InnoDB;
SHOW CREATE TABLE t1;
Table Create Table
@@ -141,6 +145,7 @@ ERROR 23000: Duplicate entry '0' for key 'i'
SET DEBUG_SYNC='now SIGNAL log2';
connection con1;
disconnect con1;
disconnect stop_purge;
connection default;
SET DEBUG_SYNC='RESET';
DROP TABLE t1;