mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-8763: Galera tests failures with --ps-protocol
(MDEV-8617: Post-fix for 10.1) * Reset THD's PS members before returning when node is not ready * Add CF_SKIP_WSREP_CHECK flag to COM_STMT_XXX commands * Skip TO replication of COM_STMT_PREPAREs for MyISAM * Updated tests
This commit is contained in:
@ -4698,8 +4698,12 @@ restart:
|
||||
if (!tbl)
|
||||
continue;
|
||||
|
||||
if (WSREP_ON && sqlcom_can_generate_row_events(thd) &&
|
||||
wsrep_replicate_myisam && tables && tbl->file->ht == myisam_hton &&
|
||||
if (WSREP_ON &&
|
||||
wsrep_replicate_myisam &&
|
||||
tables &&
|
||||
tbl->file->ht == myisam_hton &&
|
||||
sqlcom_can_generate_row_events(thd) &&
|
||||
thd->get_command() != COM_STMT_PREPARE &&
|
||||
tables->lock_type >= TL_WRITE_ALLOW_WRITE)
|
||||
{
|
||||
WSREP_TO_ISOLATION_BEGIN(NULL, NULL, tables);
|
||||
|
Reference in New Issue
Block a user