Commit e133aa1e authored by Monty's avatar Monty

Added testcase for MDEV-19585

MDEV-19585  Assertion with S3 table and flush_tables
parent 1a41fc77
#
# MDEV-19585 Assertion `!is_set() || (m_status == DA_OK_BULK &&
# is_bulk_op())' failed upon SELECT from S3 table with concurrent
# BACKUP stage
#
CREATE TABLE t1 (a INT);
ALTER TABLE t1 ENGINE=S3;
connect con1,localhost,root,,test;
BACKUP STAGE START;
connection default;
SELECT * FROM t1;
connection con1;
BACKUP STAGE BLOCK_COMMIT;
BACKUP STAGE END;
disconnect con1;
connection default;
a
DROP TABLE t1;
--source include/have_s3.inc
--source create_database.inc
--echo #
--echo # MDEV-19585 Assertion `!is_set() || (m_status == DA_OK_BULK &&
--echo # is_bulk_op())' failed upon SELECT from S3 table with concurrent
--echo # BACKUP stage
--echo #
CREATE TABLE t1 (a INT);
ALTER TABLE t1 ENGINE=S3;
--connect (con1,localhost,root,,test)
BACKUP STAGE START;
--connection default
--send
SELECT * FROM t1;
--connection con1
BACKUP STAGE BLOCK_COMMIT;
# Cleanup
BACKUP STAGE END;
--disconnect con1
--connection default
--reap
DROP TABLE t1;
#
# clean up
#
--source drop_database.inc
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment