Commit 6c13f657 authored by Jon Olav Hauglid's avatar Jon Olav Hauglid

Backport of revno: 2617.80.1

Also re-enables the test for Bug #43867

Followup to Bug#46654 False deadlock on concurrent DML/DDL with partitions, 
                      inconsistent behavior

Partition_sync.test uses features only available in debug builds.
Disabling the test for non-debug builds.
parent fb6b5ee4
# Disabled until Bug#46654 False deadlock on concurrent DML/DDL #
# with partitions, inconsistent behavior is backported # Bug #43867 ALTER TABLE on a partitioned table
# causes unnecessary deadlocks
#
CREATE TABLE t1 (a int) PARTITION BY RANGE (a)
(PARTITION p0 VALUES LESS THAN (1),
PARTITION p1 VALUES LESS THAN (2));
INSERT INTO t1 VALUES (0),(1);
# Connection 2
BEGIN;
SELECT * FROM t1;
a
0
1
# Connection 1
ALTER TABLE t1 DROP PARTITION p3;
ERROR HY000: Error in list of partitions to DROP
# Connection 2
# This failed with deadlock and should not do so.
SELECT * FROM t1;
a
0
1
# Connection 1
DROP TABLE t1;
# #
# Bug #46654 False deadlock on concurrent DML/DDL # Bug #46654 False deadlock on concurrent DML/DDL
# with partitions, inconsistent behavior # with partitions, inconsistent behavior
......
--source include/have_partition.inc --source include/have_partition.inc
--source include/have_debug.inc
# Save the initial number of concurrent sessions. # Save the initial number of concurrent sessions.
--source include/count_sessions.inc --source include/count_sessions.inc
--echo # Disabled until Bug#46654 False deadlock on concurrent DML/DDL --echo #
--echo # with partitions, inconsistent behavior is backported --echo # Bug #43867 ALTER TABLE on a partitioned table
--echo # causes unnecessary deadlocks
#--echo # --echo #
#--echo # Bug #43867 ALTER TABLE on a partitioned table
#--echo # causes unnecessary deadlocks CREATE TABLE t1 (a int) PARTITION BY RANGE (a)
#--echo # (PARTITION p0 VALUES LESS THAN (1),
# PARTITION p1 VALUES LESS THAN (2));
#CREATE TABLE t1 (a int) PARTITION BY RANGE (a)
#(PARTITION p0 VALUES LESS THAN (1), INSERT INTO t1 VALUES (0),(1);
# PARTITION p1 VALUES LESS THAN (2));
# connect(con1,localhost,root);
#INSERT INTO t1 VALUES (0),(1);
# --echo # Connection 2
#connect(con1,localhost,root); connection con1;
# BEGIN;
#--echo # Connection 2 SELECT * FROM t1;
#connection con1;
#BEGIN; --echo # Connection 1
#SELECT * FROM t1; connection default;
# --error ER_DROP_PARTITION_NON_EXISTENT
#--echo # Connection 1 ALTER TABLE t1 DROP PARTITION p3;
#connection default;
#--error ER_DROP_PARTITION_NON_EXISTENT --echo # Connection 2
#ALTER TABLE t1 DROP PARTITION p3; connection con1;
# --echo # This failed with deadlock and should not do so.
#--echo # Connection 2 SELECT * FROM t1;
#connection con1;
#--echo # This failed with deadlock and should not do so. --echo # Connection 1
#SELECT * FROM t1; connection default;
# disconnect con1;
#--echo # Connection 1 DROP TABLE t1;
#connection default;
#disconnect con1;
#DROP TABLE t1;
--echo # --echo #
......
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