File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ galera_trigger : MDEV-24048 galera.galera_trigger MTR fails: Result content mism
34
34
galera_var_ignore_apply_errors : MDEV-26770 galera_var_ignore_apply_errors fails Server did not transition to READY state
35
35
galera_var_node_address : MDEV-20485 Galera test failure
36
36
galera_var_notify_cmd : MDEV-21905 Galera test galera_var_notify_cmd causes hang
37
- galera_var_replicate_myisam_on : MDEV-24062 Galera test failure on galera_var_replicate_myisam_on
38
37
galera_var_retry_autocommit: MDEV-18181 Galera test failure on galera.galera_var_retry_autocommit
39
38
mysql-wsrep#198 : MDEV-24446: galera.mysql-wsrep#198 MTR failed: query 'reap' failed: 2000: Unknown MySQL error
40
39
partition : MDEV-19958 Galera test failure on galera.partition
Original file line number Diff line number Diff line change @@ -426,7 +426,14 @@ static inline
426
426
int wsrep_after_statement (THD* thd)
427
427
{
428
428
DBUG_ENTER (" wsrep_after_statement" );
429
- DBUG_RETURN (thd->wsrep_cs ().state () != wsrep::client_state::s_none &&
429
+ WSREP_DEBUG (" wsrep_after_statement for %lu client_state %s "
430
+ " client_mode %s trans_state %s" ,
431
+ thd_get_thread_id (thd),
432
+ wsrep::to_c_string (thd->wsrep_cs ().state ()),
433
+ wsrep::to_c_string (thd->wsrep_cs ().mode ()),
434
+ wsrep::to_c_string (thd->wsrep_cs ().transaction ().state ()));
435
+ DBUG_RETURN ((thd->wsrep_cs ().state () != wsrep::client_state::s_none &&
436
+ thd->wsrep_cs ().mode () == Wsrep_client_state::m_local) &&
430
437
!thd->internal_transaction () ?
431
438
thd->wsrep_cs ().after_statement () : 0 );
432
439
}
You can’t perform that action at this time.
0 commit comments