mirror of
https://github.com/MariaDB/server.git
synced 2025-08-09 22:24:09 +03:00
- Background statistics thread should keep the table in the statistics queue itself when the table under bulk insert operation dict_stats_analyze_index(): Set the maximum value for index_stats_t if the table is in bulk operation dict_stats_update(), dict_stats_update_transient_for_index(), dict_stats_update_transient(): Returns DB_SUCCESS_LOCKED_REC if the table under bulk insert operation dict_stats_process_entry_from_recalc_pool(): Add the table back to recalc pool if the table under bulk insert operation
196 lines
4.7 KiB
Plaintext
196 lines
4.7 KiB
Plaintext
SET foreign_key_checks=0, unique_checks=0;
|
|
#
|
|
# MDEV-24715 Assertion !node->table->skip_alter_undo
|
|
#
|
|
CREATE TABLE t (a INT UNIQUE) ENGINE=InnoDB
|
|
REPLACE SELECT 1 AS a, 2 AS b UNION SELECT 1 AS a, 3 AS c;
|
|
SELECT * FROM t;
|
|
a b
|
|
1 3
|
|
DROP TABLE t;
|
|
CREATE TEMPORARY TABLE t (a INT UNIQUE) ENGINE=InnoDB
|
|
REPLACE SELECT 1 AS a, 2 AS b UNION SELECT 1 AS a, 3 AS c;
|
|
SELECT * FROM t;
|
|
a b
|
|
1 3
|
|
DROP TEMPORARY TABLE t;
|
|
#
|
|
# MDEV-24720 AHI removal during bulk index rollback
|
|
#
|
|
SET @save_ahi = @@global.innodb_adaptive_hash_index;
|
|
SET GLOBAL innodb_adaptive_hash_index = 1;
|
|
CREATE TABLE t1(f1 INT NOT NULL)ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 SELECT * FROM seq_1_to_65536;
|
|
ROLLBACK;
|
|
CHECK TABLE t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 check status OK
|
|
#
|
|
# MDEV-24832 Root page AHI Removal fails fails during
|
|
# bulk index rollback
|
|
#
|
|
BEGIN;
|
|
INSERT INTO t1 SELECT * FROM seq_1_to_500;
|
|
ROLLBACK;
|
|
DROP TABLE t1;
|
|
SET GLOBAL innodb_adaptive_hash_index = @save_ahi;
|
|
#
|
|
# MDEV-24951 Assertion m.first->second.valid(trx->undo_no) failed
|
|
# in trx_undo_report_row_operation
|
|
#
|
|
CREATE TEMPORARY TABLE t (c INT) ENGINE=InnoDB;
|
|
CREATE TEMPORARY TABLE t2 (c INT) ENGINE=InnoDB;
|
|
SET tx_read_only=1;
|
|
BEGIN;
|
|
INSERT INTO t2 VALUES(0);
|
|
INSERT INTO t VALUES(0);
|
|
COMMIT;
|
|
INSERT INTO t VALUES(0);
|
|
DROP TEMPORARY TABLE t,t2;
|
|
ERROR 25006: Cannot execute statement in a READ ONLY transaction
|
|
SET tx_read_only=0;
|
|
DROP TEMPORARY TABLE t,t2;
|
|
#
|
|
# MDEV-24818 Optimize multiple INSERT into empty table
|
|
#
|
|
CREATE TABLE t1(f1 INT PRIMARY KEY) ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (5),(6),(7);
|
|
INSERT INTO t1 VALUES (4),(5),(6);
|
|
ERROR 23000: Duplicate entry '5' for key 'PRIMARY'
|
|
COMMIT;
|
|
SELECT * FROM t1;
|
|
f1
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (5),(6),(7);
|
|
SAVEPOINT a;
|
|
INSERT INTO t1 VALUES (4),(5),(6);
|
|
ERROR 23000: Duplicate entry '5' for key 'PRIMARY'
|
|
ROLLBACK TO SAVEPOINT a;
|
|
COMMIT;
|
|
SELECT * FROM t1;
|
|
f1
|
|
5
|
|
6
|
|
7
|
|
DROP TABLE t1;
|
|
SET foreign_key_checks=1;
|
|
CREATE TABLE t1(f1 INT PRIMARY KEY) ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (5),(6),(7);
|
|
INSERT INTO t1 VALUES (4),(5),(6);
|
|
ERROR 23000: Duplicate entry '5' for key 'PRIMARY'
|
|
COMMIT;
|
|
SELECT * FROM t1;
|
|
f1
|
|
5
|
|
6
|
|
7
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (5),(6),(7);
|
|
ERROR 23000: Duplicate entry '5' for key 'PRIMARY'
|
|
SAVEPOINT a;
|
|
INSERT INTO t1 VALUES (4),(5),(6);
|
|
ERROR 23000: Duplicate entry '5' for key 'PRIMARY'
|
|
ROLLBACK TO SAVEPOINT a;
|
|
COMMIT;
|
|
SELECT * FROM t1;
|
|
f1
|
|
5
|
|
6
|
|
7
|
|
DROP TABLE t1;
|
|
SET foreign_key_checks=0;
|
|
#
|
|
# MDEV-25315 Crash in SHOW ENGINE INNODB STATUS
|
|
#
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
|
CREATE TABLE t2 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES(1);
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES(1);
|
|
ERROR 23000: Duplicate entry '1' for key 'PRIMARY'
|
|
INSERT INTO t2 VALUES(0);
|
|
INSERT INTO t1 VALUES(2), (2);
|
|
ERROR 23000: Duplicate entry '2' for key 'PRIMARY'
|
|
SHOW ENGINE InnoDB STATUS;
|
|
COMMIT;
|
|
DROP TABLE t1,t2;
|
|
#
|
|
# MDEV-25297 Assertion: trx->roll_limit <= trx->undo_no
|
|
# in ROLLBACK TO SAVEPOINT
|
|
#
|
|
CREATE TABLE t1 (c INT PRIMARY KEY) ENGINE=InnoDB;
|
|
CREATE TABLE t2 (c INT PRIMARY KEY) ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES(0);
|
|
SAVEPOINT x;
|
|
INSERT INTO t2 VALUES(0);
|
|
INSERT INTO t1 VALUES(0);
|
|
ERROR 23000: Duplicate entry '0' for key 'PRIMARY'
|
|
ROLLBACK TO SAVEPOINT x;
|
|
ERROR HY000: Got error 153 "No savepoint with that name" during ROLLBACK
|
|
COMMIT;
|
|
SELECT * FROM t1;
|
|
c
|
|
SELECT * FROM t2;
|
|
c
|
|
DROP TABLE t1,t2;
|
|
#
|
|
# MDEV-25487 Assertion failed in lock_rec_move
|
|
#
|
|
CREATE TABLE t1 (a INT KEY) ENGINE=InnoDB;
|
|
SET @save_limit = @@GLOBAL.innodb_limit_optimistic_insert_debug;
|
|
SET GLOBAL innodb_limit_optimistic_insert_debug = 2;
|
|
BEGIN;
|
|
SELECT * FROM t1 LOCK IN SHARE MODE;
|
|
a
|
|
INSERT INTO t1 VALUES (0),(1),(2);
|
|
INSERT INTO t1 VALUES (0,1);
|
|
ERROR 21S01: Column count doesn't match value count at row 1
|
|
INSERT INTO t1 VALUES (2);
|
|
ERROR 23000: Duplicate entry '2' for key 'PRIMARY'
|
|
COMMIT;
|
|
SET GLOBAL innodb_limit_optimistic_insert_debug = @save_limit;
|
|
SELECT * FROM t1;
|
|
a
|
|
0
|
|
1
|
|
2
|
|
DROP TABLE t1;
|
|
#
|
|
# MDEV-25534 Assertion lock_table_has...LOCK_IX
|
|
#
|
|
CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
|
SET autocommit=0;
|
|
LOCK TABLE t1 WRITE;
|
|
INSERT INTO t1 VALUES (1);
|
|
COMMIT;
|
|
CREATE TEMPORARY TABLE t0 (a INT PRIMARY KEY) ENGINE=InnoDB;
|
|
INSERT INTO t0 VALUES (1);
|
|
INSERT INTO t1 VALUES (2);
|
|
COMMIT;
|
|
SET autocommit=1;
|
|
DROP TABLE t1;
|
|
DROP TEMPORARY TABLE t0;
|
|
#
|
|
# MDEV-25496 Assertion 'trx->bulk_insert' failed
|
|
# in trx_undo_report_row_operation on INSERT
|
|
#
|
|
CREATE TABLE t (i INT) ENGINE=InnoDB PARTITION BY HASH (i) PARTITIONS 2;
|
|
INSERT INTO t VALUES (0);
|
|
INSERT INTO t VALUES (1),(0),(1);
|
|
DROP TABLE t;
|
|
#
|
|
# MDEV-28327 InnoDB persistent statistics fail to update
|
|
# after bulk insert
|
|
#
|
|
CREATE TABLE t1 (a INT PRIMARY KEY)ENGINE=InnoDB;
|
|
INSERT INTO t1 SELECT * FROM seq_1_to_4096;
|
|
# Wait till statistics update after bulk insert operation
|
|
SELECT n_rows FROM mysql.innodb_table_stats WHERE TABLE_NAME="t1";
|
|
n_rows
|
|
4096
|
|
DROP TABLE t1;
|