[Commits] 5de8fea: Fix after the latest rebase of commits for MDEV-28883
revision-id: 5de8fea53b9a4d18c146f96c0b6f13e96a322260 (mariadb-10.10.1-14-g5de8fea) parent(s): ea772f29e422ac4f76dbc031480f05a050433add author: Igor Babaev committer: Igor Babaev timestamp: 2022-09-13 16:14:10 -0700 message: Fix after the latest rebase of commits for MDEV-28883 --- sql/sql_delete.cc | 3 +++ sql/sql_update.cc | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sql/sql_delete.cc b/sql/sql_delete.cc index 8acc502..5191bae 100644 --- a/sql/sql_delete.cc +++ b/sql/sql_delete.cc @@ -44,6 +44,9 @@ // end_read_record #include "sql_insert.h" // fix_rownum_pointers #include "sql_partition.h" // make_used_partitions_str +#ifdef WITH_WSREP +#include "wsrep_mysqld.h" +#endif #define MEM_STRIP_BUF_SIZE ((size_t) thd->variables.sortbuff_size) diff --git a/sql/sql_update.cc b/sql/sql_update.cc index 94454c2..439ff63 100644 --- a/sql/sql_update.cc +++ b/sql/sql_update.cc @@ -45,6 +45,9 @@ #include "sql_insert.h" // For vers_insert_history_row() that may be // needed for System Versioning. +#ifdef WITH_WSREP +#include "wsrep_mysqld.h" +#endif /** True if the table's input and output record buffers are comparable using
participants (1)
-
IgorBabaev