diff options
author | Monty <monty@mariadb.org> | 2020-05-19 20:15:00 +0300 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2020-05-23 12:29:10 +0300 |
commit | f4ddde0698764b5df125d74cf261e0cc0af8311a (patch) | |
tree | 7ca67e4f4fd5c77b38119db57f272c94f8e649a2 /sql/wsrep_trans_observer.h | |
parent | c4bf4b7aefcd95b898ea9c8714d09fc1045f304c (diff) | |
download | mariadb-git-f4ddde0698764b5df125d74cf261e0cc0af8311a.tar.gz |
Only apply wsrep_trx_fragment_size to InnoDB tables
MDEV-22617 Galera node crashes when trying to log to slow_log table in
streaming replication mode
Other things:
- Changed name of wsrep_after_row(two arguments) to
wsrep_after_row_internal(one argument) to not depended on the
function signature with unused arguments.
Diffstat (limited to 'sql/wsrep_trans_observer.h')
-rw-r--r-- | sql/wsrep_trans_observer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/wsrep_trans_observer.h b/sql/wsrep_trans_observer.h index 2e758da27d5..35f670b9af6 100644 --- a/sql/wsrep_trans_observer.h +++ b/sql/wsrep_trans_observer.h @@ -159,7 +159,7 @@ static inline int wsrep_start_trx_if_not_started(THD* thd) Return zero on succes, non-zero on failure. */ -static inline int wsrep_after_row(THD* thd, bool) +static inline int wsrep_after_row_internal(THD* thd) { if (thd->wsrep_cs().state() != wsrep::client_state::s_none && wsrep_thd_is_local(thd)) |