mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
06ba07c269
MDEV-12887 UT_LIST_GET_LEN(trx->lock.trx_locks) == 0 when mysqldump sequence
26 lines
602 B
Text
26 lines
602 B
Text
#
|
|
# Testing mysqldump of sequences
|
|
#
|
|
|
|
# Embedded server doesn't support external clients
|
|
--source include/not_embedded.inc
|
|
--source include/have_aria.inc
|
|
--source include/have_innodb.inc
|
|
|
|
CREATE SEQUENCE a1 engine=aria;
|
|
CREATE TABLE t1(a INT, KEY (a)) KEY_BLOCK_SIZE=1024;
|
|
insert into t1 values (1),(2);
|
|
CREATE SEQUENCE x1 engine=innodb;
|
|
--exec $MYSQL_DUMP --compact test
|
|
DROP TABLE a1,t1,x1;
|
|
|
|
#
|
|
# MDEV-12887 UT_LIST_GET_LEN(trx->lock.trx_locks) == 0 when mysqldump sequence
|
|
#
|
|
|
|
set default_storage_engine=InnoDB;
|
|
create sequence t1;
|
|
LOCK TABLES t1 READ;
|
|
SELECT * FROM t1;
|
|
unlock tables;
|
|
drop table t1;
|