mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge 10.10 into 10.11
This commit is contained in:
@@ -235,6 +235,20 @@ SELECT TABLE_ROWS, AVG_ROW_LENGTH>0 FROM INFORMATION_SCHEMA.TABLES
|
||||
WHERE TABLE_NAME='t1' AND TABLE_SCHEMA='test';
|
||||
DROP TABLE t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-29975 InnoDB fails to release savepoint during bulk insert
|
||||
--echo #
|
||||
CREATE TABLE t (c INT KEY) ENGINE=InnoDB;
|
||||
begin;
|
||||
--error ER_WRONG_VALUE_COUNT_ON_ROW
|
||||
INSERT INTO t VALUES (0,0);
|
||||
SAVEPOINT a;
|
||||
--error ER_ERROR_DURING_COMMIT
|
||||
INSERT INTO t VALUES (0),(0);
|
||||
SAVEPOINT a;
|
||||
commit;
|
||||
SELECT * FROM t;
|
||||
DROP TABLE t;
|
||||
--echo # End of 10.6 tests
|
||||
|
||||
--echo #
|
||||
|
@@ -1,2 +1,3 @@
|
||||
--innodb-buffer-pool-size=24M
|
||||
--innodb-immediate-scrub-data-uncompressed=ON
|
||||
--loose-innodb-sys-tablespaces
|
||||
|
@@ -19,6 +19,9 @@ let $restart_parameters="--innodb_undo_tablespaces=2";
|
||||
SET GLOBAL innodb_undo_log_truncate = 0;
|
||||
SET GLOBAL innodb_purge_rseg_truncate_frequency = 1;
|
||||
|
||||
LET $MYSQLD_DATADIR = `select @@datadir`;
|
||||
LET $INNODB_PAGE_SIZE = `select @@innodb_page_size`;
|
||||
--source suite/innodb/include/show_i_s_tablespaces.inc
|
||||
#-----------------------------------------------------------------------------
|
||||
#
|
||||
# Perform DML action using multiple clients and multiple undo tablespace.
|
||||
|
Reference in New Issue
Block a user