Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.2(EOL)
-
None
Description
These sleeps, however crude, help to reproduce the problem (on my machine reliably):
diff --git a/storage/innobase/row/row0quiesce.cc b/storage/innobase/row/row0quiesce.cc
|
index dd6289c..e75137f 100644
|
--- a/storage/innobase/row/row0quiesce.cc
|
+++ b/storage/innobase/row/row0quiesce.cc
|
@@ -600,6 +600,7 @@ row_quiesce_table_complete(
|
|
os_file_delete_if_exists(innodb_data_file_key, cfg_name, NULL);
|
|
+ my_sleep(2000000);
|
ib::info() << "Deleting the meta-data file '" << cfg_name << "'";
|
}
|
|
diff --git a/storage/innobase/trx/trx0purge.cc b/storage/innobase/trx/trx0purge.cc
|
index 4e51796..45afd72 100644
|
--- a/storage/innobase/trx/trx0purge.cc
|
+++ b/storage/innobase/trx/trx0purge.cc
|
@@ -1783,6 +1783,7 @@ trx_purge_run(void)
|
{
|
rw_lock_x_lock(&purge_sys->latch);
|
|
+ my_sleep(1000000);
|
switch (purge_sys->state) {
|
case PURGE_STATE_INIT:
|
case PURGE_STATE_EXIT:
|
--source include/have_innodb.inc
|
CREATE OR REPLACE TABLE t1 (t TIMESTAMP) ENGINE=InnoDB; |
FLUSH TABLE t1 FOR EXPORT; |
shutdown;
|
10.2 0e69d0b094365 with the patch above |
2017-12-13 3:10:50 139949094012672 [Note] InnoDB: Writing table metadata to './test/t1.cfg'
|
2017-12-13 3:10:50 139949094012672 [Note] InnoDB: Table `test`.`t1` flushed to disk
|
2017-12-13 3:10:50 139948960823040 [Note] /data/src/10.2-bug/sql/mysqld (root[root] @ localhost []): Normal shutdown
|
|
2017-12-13 3:10:50 139948841735936 [Note] InnoDB: FTS optimize thread exiting.
|
2017-12-13 3:10:50 139948960823040 [Note] Event Scheduler: Purging the queue. 0 events
|
2017-12-13 3:10:52 139949094012672 [Note] InnoDB: Deleting the meta-data file './test/t1.cfg'
|
2017-12-13 03:10:53 0x7f4870090700 InnoDB: Assertion failure in file /data/src/10.2-bug/storage/innobase/trx/trx0purge.cc line 1837
|
InnoDB: We intentionally generate a memory trap.
|
|
#5 0x00007f4875dbc3fa in abort () from /lib/x86_64-linux-gnu/libc.so.6
|
#6 0x00005594dd7a7b88 in ut_dbg_assertion_failed (expr=0x0, file=0x5594ddc9a748 "/data/src/10.2-bug/storage/innobase/trx/trx0purge.cc", line=1837) at /data/src/10.2-bug/storage/innobase/ut/ut0dbg.cc:61
|
#7 0x00005594dd772f30 in trx_purge_run () at /data/src/10.2-bug/storage/innobase/trx/trx0purge.cc:1837
|
#8 0x00005594dd734762 in row_quiesce_table_complete (table=0x7f4818149778, trx=0x7f486bc000d8) at /data/src/10.2-bug/storage/innobase/row/row0quiesce.cc:608
|
#9 0x00005594dd5a7aa4 in ha_innobase::external_lock (this=0x7f4818131f88, thd=0x7f4818000b00, lock_type=2) at /data/src/10.2-bug/storage/innobase/handler/ha_innodb.cc:16324
|
#10 0x00005594dd28ecdc in handler::ha_external_lock (this=0x7f4818131f88, thd=0x7f4818000b00, lock_type=2) at /data/src/10.2-bug/sql/handler.cc:5903
|
#11 0x00005594dd399776 in unlock_external (thd=0x7f4818000b00, table=0x7f481816d628, count=1) at /data/src/10.2-bug/sql/lock.cc:719
|
#12 0x00005594dd398c4e in mysql_unlock_tables (thd=0x7f4818000b00, sql_lock=0x7f481816d610, free_lock=true) at /data/src/10.2-bug/sql/lock.cc:429
|
#13 0x00005594dd398bb9 in mysql_unlock_tables (thd=0x7f4818000b00, sql_lock=0x7f481816d610) at /data/src/10.2-bug/sql/lock.cc:418
|
#14 0x00005594dcf9c46b in close_thread_tables (thd=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_base.cc:840
|
#15 0x00005594dcf9edf0 in Locked_tables_list::unlock_locked_tables (this=0x7f4818004510, thd=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_base.cc:2154
|
#16 0x00005594dcfc61cd in THD::cleanup (this=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_class.cc:1453
|
#17 0x00005594dcf30b25 in unlink_thd (thd=0x7f4818000b00) at /data/src/10.2-bug/sql/mysqld.cc:2904
|
#18 0x00005594dcf30fc6 in one_thread_per_connection_end (thd=0x7f4818000b00, put_in_cache=true) at /data/src/10.2-bug/sql/mysqld.cc:3049
|
#19 0x00005594dd15843a in do_handle_one_connection (connect=0x5594e07220c0) at /data/src/10.2-bug/sql/sql_connect.cc:1373
|
#20 0x00005594dd1580de in handle_one_connection (arg=0x5594e07220c0) at /data/src/10.2-bug/sql/sql_connect.cc:1260
|
#21 0x00005594dd576a76 in pfs_spawn_thread (arg=0x5594e072c630) at /data/src/10.2-bug/storage/perfschema/pfs.cc:1863
|
#22 0x00007f4877a8a494 in start_thread (arg=0x7f4870090700) at pthread_create.c:333
|
#23 0x00007f4875e7093f in clone () from /lib/x86_64-linux-gnu/libc.so.6
|
Also reproducible on 10.3.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
[link|https://s3.amazonaws.com/archive.travis-ci.org/jobs/302783167/log.txt?X-Amz-Expires=30&X-Amz-Date=20171116T184603Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJRYRXRSVGNKPKO5A/20171116/us-east-1/s3/aws4_request&X-Amz-SignedHeaders=host&X-Amz-Signature=4f46fa74bd26adbe00f0d424e36caf696718c866cd6cbf3e7cdfa297e9906d85]
{noformat:title=10.3 31bd86c8df63a4d9e98d67541e136456bd6d9cc2} 2017-11-16 12:09:40 0x7f63a4272700 InnoDB: Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc line 1789 InnoDB: We intentionally generate a memory trap. #5 0x00007f63a7369028 in __GI_abort () at abort.c:89 #6 0x000000b09ce7f1a2 in ut_dbg_assertion_failed (expr=0x0, file=0xb09d440c50 "/home/travis/src/storage/innobase/trx/trx0purge.cc", line=1789) at /home/travis/src/storage/innobase/ut/ut0dbg.cc:61 #7 0x000000b09ce4888e in trx_purge_run () at /home/travis/src/storage/innobase/trx/trx0purge.cc:1789 #8 0x000000b09ce08a72 in row_quiesce_table_complete (table=0x7f6344116e88, trx=0x7f63918de508) at /home/travis/src/storage/innobase/row/row0quiesce.cc:606 #9 0x000000b09cc5623e in ha_innobase::external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/storage/innobase/handler/ha_innodb.cc:15978 #10 0x000000b09c96fdbf in handler::ha_external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/sql/handler.cc:5946 #11 0x000000b09ca804de in unlock_external (thd=0x7f634400c260, table=0x7f6344117858, count=1) at /home/travis/src/sql/lock.cc:723 #12 0x000000b09ca7f93a in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840, free_lock=true) at /home/travis/src/sql/lock.cc:432 #13 0x000000b09ca7f892 in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840) at /home/travis/src/sql/lock.cc:418 #14 0x000000b09c6116fe in close_thread_tables (thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:840 #15 0x000000b09c614315 in Locked_tables_list::unlock_locked_tables (this=0x7f634400fde0, thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:2163 #16 0x000000b09c63c6af in THD::cleanup (this=0x7f634400c260) at /home/travis/src/sql/sql_class.cc:1498 #17 0x000000b09c5a1a74 in unlink_thd (thd=0x7f634400c260) at /home/travis/src/sql/mysqld.cc:2909 #18 0x000000b09c5a1f21 in one_thread_per_connection_end (thd=0x7f634400c260, put_in_cache=true) at /home/travis/src/sql/mysqld.cc:3054 #19 0x000000b09c7e74cd in do_handle_one_connection (connect=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1437 #20 0x000000b09c7e7171 in handle_one_connection (arg=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1324 #21 0x00007f63a7f20184 in start_thread (arg=0x7f63a4272700) at pthread_create.c:312 #22 0x00007f63a742cffd in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111 {noformat} {noformat} Query (0x0): Connection ID (thread ID): 16 Status: KILL_SERVER {noformat} {noformat} perl ./runall-new.pl --grammar=conf/runtime/metadata_stability.yy --gendata=conf/runtime/metadata_stability.zz --duration=600 --threads=6 --queries=100M --redefine=conf/mariadb/instant_add.yy --mysqld=--max-statement-time=30 --reporters=Backtrace,ErrorLog,Deadlock --scenario=Restart --engine=InnoDB --seed=time --basedir=/data/bld/10.3 --vardir=/dev/shm/vardir1 {noformat} |
{noformat:title=10.3 31bd86c8df63a4d9e98d67541e136456bd6d9cc2}
2017-11-16 12:09:40 0x7f63a4272700 InnoDB: Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc line 1789 InnoDB: We intentionally generate a memory trap. #5 0x00007f63a7369028 in __GI_abort () at abort.c:89 #6 0x000000b09ce7f1a2 in ut_dbg_assertion_failed (expr=0x0, file=0xb09d440c50 "/home/travis/src/storage/innobase/trx/trx0purge.cc", line=1789) at /home/travis/src/storage/innobase/ut/ut0dbg.cc:61 #7 0x000000b09ce4888e in trx_purge_run () at /home/travis/src/storage/innobase/trx/trx0purge.cc:1789 #8 0x000000b09ce08a72 in row_quiesce_table_complete (table=0x7f6344116e88, trx=0x7f63918de508) at /home/travis/src/storage/innobase/row/row0quiesce.cc:606 #9 0x000000b09cc5623e in ha_innobase::external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/storage/innobase/handler/ha_innodb.cc:15978 #10 0x000000b09c96fdbf in handler::ha_external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/sql/handler.cc:5946 #11 0x000000b09ca804de in unlock_external (thd=0x7f634400c260, table=0x7f6344117858, count=1) at /home/travis/src/sql/lock.cc:723 #12 0x000000b09ca7f93a in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840, free_lock=true) at /home/travis/src/sql/lock.cc:432 #13 0x000000b09ca7f892 in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840) at /home/travis/src/sql/lock.cc:418 #14 0x000000b09c6116fe in close_thread_tables (thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:840 #15 0x000000b09c614315 in Locked_tables_list::unlock_locked_tables (this=0x7f634400fde0, thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:2163 #16 0x000000b09c63c6af in THD::cleanup (this=0x7f634400c260) at /home/travis/src/sql/sql_class.cc:1498 #17 0x000000b09c5a1a74 in unlink_thd (thd=0x7f634400c260) at /home/travis/src/sql/mysqld.cc:2909 #18 0x000000b09c5a1f21 in one_thread_per_connection_end (thd=0x7f634400c260, put_in_cache=true) at /home/travis/src/sql/mysqld.cc:3054 #19 0x000000b09c7e74cd in do_handle_one_connection (connect=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1437 #20 0x000000b09c7e7171 in handle_one_connection (arg=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1324 #21 0x00007f63a7f20184 in start_thread (arg=0x7f63a4272700) at pthread_create.c:312 #22 0x00007f63a742cffd in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111 {noformat} {noformat} Query (0x0): Connection ID (thread ID): 16 Status: KILL_SERVER {noformat} {noformat} perl ./runall-new.pl --grammar=conf/runtime/metadata_stability.yy --gendata=conf/runtime/metadata_stability.zz --duration=600 --threads=6 --queries=100M --redefine=conf/mariadb/instant_add.yy --mysqld=--max-statement-time=30 --reporters=Backtrace,ErrorLog,Deadlock --scenario=Restart --engine=InnoDB --seed=time --basedir=/data/bld/10.3 --vardir=/dev/shm/vardir1 {noformat} |
Link |
This issue is blocked by |
Fix Version/s | 10.2 [ 14601 ] | |
Affects Version/s | 10.2 [ 14601 ] | |
Affects Version/s | 10.3 [ 22126 ] | |
Description |
{noformat:title=10.3 31bd86c8df63a4d9e98d67541e136456bd6d9cc2}
2017-11-16 12:09:40 0x7f63a4272700 InnoDB: Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc line 1789 InnoDB: We intentionally generate a memory trap. #5 0x00007f63a7369028 in __GI_abort () at abort.c:89 #6 0x000000b09ce7f1a2 in ut_dbg_assertion_failed (expr=0x0, file=0xb09d440c50 "/home/travis/src/storage/innobase/trx/trx0purge.cc", line=1789) at /home/travis/src/storage/innobase/ut/ut0dbg.cc:61 #7 0x000000b09ce4888e in trx_purge_run () at /home/travis/src/storage/innobase/trx/trx0purge.cc:1789 #8 0x000000b09ce08a72 in row_quiesce_table_complete (table=0x7f6344116e88, trx=0x7f63918de508) at /home/travis/src/storage/innobase/row/row0quiesce.cc:606 #9 0x000000b09cc5623e in ha_innobase::external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/storage/innobase/handler/ha_innodb.cc:15978 #10 0x000000b09c96fdbf in handler::ha_external_lock (this=0x7f634410ad88, thd=0x7f634400c260, lock_type=2) at /home/travis/src/sql/handler.cc:5946 #11 0x000000b09ca804de in unlock_external (thd=0x7f634400c260, table=0x7f6344117858, count=1) at /home/travis/src/sql/lock.cc:723 #12 0x000000b09ca7f93a in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840, free_lock=true) at /home/travis/src/sql/lock.cc:432 #13 0x000000b09ca7f892 in mysql_unlock_tables (thd=0x7f634400c260, sql_lock=0x7f6344117840) at /home/travis/src/sql/lock.cc:418 #14 0x000000b09c6116fe in close_thread_tables (thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:840 #15 0x000000b09c614315 in Locked_tables_list::unlock_locked_tables (this=0x7f634400fde0, thd=0x7f634400c260) at /home/travis/src/sql/sql_base.cc:2163 #16 0x000000b09c63c6af in THD::cleanup (this=0x7f634400c260) at /home/travis/src/sql/sql_class.cc:1498 #17 0x000000b09c5a1a74 in unlink_thd (thd=0x7f634400c260) at /home/travis/src/sql/mysqld.cc:2909 #18 0x000000b09c5a1f21 in one_thread_per_connection_end (thd=0x7f634400c260, put_in_cache=true) at /home/travis/src/sql/mysqld.cc:3054 #19 0x000000b09c7e74cd in do_handle_one_connection (connect=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1437 #20 0x000000b09c7e7171 in handle_one_connection (arg=0xb0a068d470) at /home/travis/src/sql/sql_connect.cc:1324 #21 0x00007f63a7f20184 in start_thread (arg=0x7f63a4272700) at pthread_create.c:312 #22 0x00007f63a742cffd in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:111 {noformat} {noformat} Query (0x0): Connection ID (thread ID): 16 Status: KILL_SERVER {noformat} {noformat} perl ./runall-new.pl --grammar=conf/runtime/metadata_stability.yy --gendata=conf/runtime/metadata_stability.zz --duration=600 --threads=6 --queries=100M --redefine=conf/mariadb/instant_add.yy --mysqld=--max-statement-time=30 --reporters=Backtrace,ErrorLog,Deadlock --scenario=Restart --engine=InnoDB --seed=time --basedir=/data/bld/10.3 --vardir=/dev/shm/vardir1 {noformat} |
These sleeps, however crude, help to reproduce the problem (on my machine reliably):
{code} diff --git a/storage/innobase/row/row0quiesce.cc b/storage/innobase/row/row0quiesce.cc index dd6289c..e75137f 100644 --- a/storage/innobase/row/row0quiesce.cc +++ b/storage/innobase/row/row0quiesce.cc @@ -600,6 +600,7 @@ row_quiesce_table_complete( os_file_delete_if_exists(innodb_data_file_key, cfg_name, NULL); + my_sleep(2000000); ib::info() << "Deleting the meta-data file '" << cfg_name << "'"; } diff --git a/storage/innobase/trx/trx0purge.cc b/storage/innobase/trx/trx0purge.cc index 4e51796..45afd72 100644 --- a/storage/innobase/trx/trx0purge.cc +++ b/storage/innobase/trx/trx0purge.cc @@ -1783,6 +1783,7 @@ trx_purge_run(void) { rw_lock_x_lock(&purge_sys->latch); + my_sleep(1000000); switch (purge_sys->state) { case PURGE_STATE_INIT: case PURGE_STATE_EXIT: {code} {code:sql} --source include/have_innodb.inc CREATE OR REPLACE TABLE t1 (t TIMESTAMP) ENGINE=InnoDB; FLUSH TABLE t1 FOR EXPORT; shutdown; {code} {noformat:title=10.2 0e69d0b094365 with the patch above} 2017-12-13 3:10:50 139949094012672 [Note] InnoDB: Writing table metadata to './test/t1.cfg' 2017-12-13 3:10:50 139949094012672 [Note] InnoDB: Table `test`.`t1` flushed to disk 2017-12-13 3:10:50 139948960823040 [Note] /data/src/10.2-bug/sql/mysqld (root[root] @ localhost []): Normal shutdown 2017-12-13 3:10:50 139948841735936 [Note] InnoDB: FTS optimize thread exiting. 2017-12-13 3:10:50 139948960823040 [Note] Event Scheduler: Purging the queue. 0 events 2017-12-13 3:10:52 139949094012672 [Note] InnoDB: Deleting the meta-data file './test/t1.cfg' 2017-12-13 03:10:53 0x7f4870090700 InnoDB: Assertion failure in file /data/src/10.2-bug/storage/innobase/trx/trx0purge.cc line 1837 InnoDB: We intentionally generate a memory trap. #5 0x00007f4875dbc3fa in abort () from /lib/x86_64-linux-gnu/libc.so.6 #6 0x00005594dd7a7b88 in ut_dbg_assertion_failed (expr=0x0, file=0x5594ddc9a748 "/data/src/10.2-bug/storage/innobase/trx/trx0purge.cc", line=1837) at /data/src/10.2-bug/storage/innobase/ut/ut0dbg.cc:61 #7 0x00005594dd772f30 in trx_purge_run () at /data/src/10.2-bug/storage/innobase/trx/trx0purge.cc:1837 #8 0x00005594dd734762 in row_quiesce_table_complete (table=0x7f4818149778, trx=0x7f486bc000d8) at /data/src/10.2-bug/storage/innobase/row/row0quiesce.cc:608 #9 0x00005594dd5a7aa4 in ha_innobase::external_lock (this=0x7f4818131f88, thd=0x7f4818000b00, lock_type=2) at /data/src/10.2-bug/storage/innobase/handler/ha_innodb.cc:16324 #10 0x00005594dd28ecdc in handler::ha_external_lock (this=0x7f4818131f88, thd=0x7f4818000b00, lock_type=2) at /data/src/10.2-bug/sql/handler.cc:5903 #11 0x00005594dd399776 in unlock_external (thd=0x7f4818000b00, table=0x7f481816d628, count=1) at /data/src/10.2-bug/sql/lock.cc:719 #12 0x00005594dd398c4e in mysql_unlock_tables (thd=0x7f4818000b00, sql_lock=0x7f481816d610, free_lock=true) at /data/src/10.2-bug/sql/lock.cc:429 #13 0x00005594dd398bb9 in mysql_unlock_tables (thd=0x7f4818000b00, sql_lock=0x7f481816d610) at /data/src/10.2-bug/sql/lock.cc:418 #14 0x00005594dcf9c46b in close_thread_tables (thd=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_base.cc:840 #15 0x00005594dcf9edf0 in Locked_tables_list::unlock_locked_tables (this=0x7f4818004510, thd=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_base.cc:2154 #16 0x00005594dcfc61cd in THD::cleanup (this=0x7f4818000b00) at /data/src/10.2-bug/sql/sql_class.cc:1453 #17 0x00005594dcf30b25 in unlink_thd (thd=0x7f4818000b00) at /data/src/10.2-bug/sql/mysqld.cc:2904 #18 0x00005594dcf30fc6 in one_thread_per_connection_end (thd=0x7f4818000b00, put_in_cache=true) at /data/src/10.2-bug/sql/mysqld.cc:3049 #19 0x00005594dd15843a in do_handle_one_connection (connect=0x5594e07220c0) at /data/src/10.2-bug/sql/sql_connect.cc:1373 #20 0x00005594dd1580de in handle_one_connection (arg=0x5594e07220c0) at /data/src/10.2-bug/sql/sql_connect.cc:1260 #21 0x00005594dd576a76 in pfs_spawn_thread (arg=0x5594e072c630) at /data/src/10.2-bug/storage/perfschema/pfs.cc:1863 #22 0x00007f4877a8a494 in start_thread (arg=0x7f4870090700) at pthread_create.c:333 #23 0x00007f4875e7093f in clone () from /lib/x86_64-linux-gnu/libc.so.6 {noformat} Also reproducible on 10.3. |
Summary | [Draft] Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc line 1789 | Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc upon shutdown |
Attachment | threads [ 44550 ] |
Attachment | trial.log [ 44549 ] |
Comment |
[ Cannot reproduce partially because keep getting |
Link |
This issue is blocked by |
Assignee | Elena Stepanova [ elenst ] | Marko Mäkelä [ marko ] |
Summary | Assertion failure in file /home/travis/src/storage/innobase/trx/trx0purge.cc upon shutdown | Assertion failure in file storage/innobase/trx/trx0purge.cc upon shutdown |
issue.field.resolutiondate | 2017-12-13 12:21:13.0 | 2017-12-13 12:21:13.346 |
Fix Version/s | 10.2.12 [ 22810 ] | |
Fix Version/s | 10.3.3 [ 22644 ] | |
Fix Version/s | 10.2 [ 14601 ] | |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 83860 ] | MariaDB v4 [ 153201 ] |
I think that it was also possible for FLUSH TABLES…FOR EXPORT to cause a hang during shutdown. My fix should have addressed that too.