diff options
author | Monty <monty@mariadb.org> | 2018-03-29 12:25:17 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-03-29 14:20:11 +0300 |
commit | cd93eeeb1dd2b86ed5111bf16eedee90690e387d (patch) | |
tree | 8da35071262f69f38ace931b075ea6988de1aeb1 | |
parent | e2664ee8362a94335df06edfc86936ff263d6dc0 (diff) | |
download | mariadb-git-cd93eeeb1dd2b86ed5111bf16eedee90690e387d.tar.gz |
MDEV-15149 Assert upon concurrent creating / querying sequences
Problem was that sequence_insert closed and reopened the like table
without proper locking. Fixed by ensuring that the like table is
not reopened in sequence_insert
-rw-r--r-- | mysql-test/suite/sql_sequence/concurrent_create.result | 24 | ||||
-rw-r--r-- | mysql-test/suite/sql_sequence/concurrent_create.test | 40 | ||||
-rw-r--r-- | sql/sql_sequence.cc | 3 | ||||
-rw-r--r-- | sql/table_cache.cc | 2 |
4 files changed, 69 insertions, 0 deletions
diff --git a/mysql-test/suite/sql_sequence/concurrent_create.result b/mysql-test/suite/sql_sequence/concurrent_create.result new file mode 100644 index 00000000000..5c9ef71d4fe --- /dev/null +++ b/mysql-test/suite/sql_sequence/concurrent_create.result @@ -0,0 +1,24 @@ +CREATE SEQUENCE s1 ENGINE=InnoDB; +CREATE SEQUENCE s2 ENGINE=InnoDB; +connect con1,localhost,root,,test; +CREATE TABLE s3 LIKE s2;; +connection default; +CREATE SEQUENCE s4 ENGINE=InnoDB; +SELECT * from s1 WHERE start_value IN (SELECT start_value FROM s2); +next_not_cached_value minimum_value maximum_value start_value increment cache_size cycle_option cycle_count +1 1 9223372036854775806 1 1 1000 0 0 +connection con1; +disconnect con1; +connection default; +DROP SEQUENCE s1, s2, s3, s4; +CREATE SEQUENCE s1 ENGINE=InnoDB; +PREPARE stmt FROM "CREATE TABLE s2 LIKE s1"; +execute stmt; +drop table s2; +execute stmt; +drop table s2; +execute stmt; +select * from s2; +next_not_cached_value minimum_value maximum_value start_value increment cache_size cycle_option cycle_count +1 1 9223372036854775806 1 1 1000 0 0 +DROP SEQUENCE s1, s2; diff --git a/mysql-test/suite/sql_sequence/concurrent_create.test b/mysql-test/suite/sql_sequence/concurrent_create.test new file mode 100644 index 00000000000..699214a241f --- /dev/null +++ b/mysql-test/suite/sql_sequence/concurrent_create.test @@ -0,0 +1,40 @@ +--source include/have_sequence.inc +--source include/have_innodb.inc + +# +# MDEV-15149 Assorted assertion failures upon concurrent creating / querying +# sequences (same test case) +# + +CREATE SEQUENCE s1 ENGINE=InnoDB; +CREATE SEQUENCE s2 ENGINE=InnoDB; + +--connect (con1,localhost,root,,test) +--send CREATE TABLE s3 LIKE s2; + +--connection default +CREATE SEQUENCE s4 ENGINE=InnoDB; +SELECT * from s1 WHERE start_value IN (SELECT start_value FROM s2); + +--connection con1 +--reap + +# Cleanup +--disconnect con1 +--connection default +DROP SEQUENCE s1, s2, s3, s4; + +# +# Check prepared statements +# + +CREATE SEQUENCE s1 ENGINE=InnoDB; +PREPARE stmt FROM "CREATE TABLE s2 LIKE s1"; +execute stmt; +drop table s2; +execute stmt; +drop table s2; +execute stmt; +select * from s2; +DROP SEQUENCE s1, s2; + diff --git a/sql/sql_sequence.cc b/sql/sql_sequence.cc index cc0691f92cf..3ef1e668667 100644 --- a/sql/sql_sequence.cc +++ b/sql/sql_sequence.cc @@ -283,6 +283,7 @@ bool sequence_insert(THD *thd, LEX *lex, TABLE_LIST *table_list) Reprepare_observer *save_reprepare_observer; sequence_definition *seq= lex->create_info.seq_create_info; bool temporary_table= table_list->table != 0; + TABLE_LIST *org_next_global= table_list->next_global; DBUG_ENTER("sequence_insert"); /* If not temporary table */ @@ -290,6 +291,7 @@ bool sequence_insert(THD *thd, LEX *lex, TABLE_LIST *table_list) { /* Table was locked as part of create table. Free it but keep MDL locks */ close_thread_tables(thd); + table_list->next_global= 0; // Close LIKE TABLE table_list->lock_type= TL_WRITE_DEFAULT; table_list->updating= 1; /* @@ -312,6 +314,7 @@ bool sequence_insert(THD *thd, LEX *lex, TABLE_LIST *table_list) table_list->open_strategy= save_open_strategy; thd->open_options&= ~HA_OPEN_FOR_CREATE; thd->m_reprepare_observer= save_reprepare_observer; + table_list->next_global= org_next_global; if (error) DBUG_RETURN(TRUE); /* purify inspected */ } diff --git a/sql/table_cache.cc b/sql/table_cache.cc index 18ea7f83964..e524e0995e2 100644 --- a/sql/table_cache.cc +++ b/sql/table_cache.cc @@ -460,6 +460,7 @@ static TABLE *tc_acquire_table(THD *thd, TDC_element *element) void tc_release_table(TABLE *table) { uint32 i= table->instance; + DBUG_ENTER("tc_release_table"); DBUG_ASSERT(table->in_use); DBUG_ASSERT(table->file); @@ -478,6 +479,7 @@ void tc_release_table(TABLE *table) tc[i].free_tables.push_back(table); mysql_mutex_unlock(&tc[i].LOCK_table_cache); } + DBUG_VOID_RETURN; } |