mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Fix for build failure.
This commit is contained in:
parent
99838736bc
commit
df1ee18c27
1 changed files with 5 additions and 5 deletions
|
@ -794,6 +794,11 @@ private:
|
|||
bool check_upsert(THD *thd, List<Item> &update_fields, List<Item> &update_values);
|
||||
int send_upsert_message(THD *thd, List<Item> &update_fields, List<Item> &update_values, DB_TXN *txn);
|
||||
#endif
|
||||
#ifdef WITH_WSREP
|
||||
int wsrep_append_keys(THD *thd, bool shared,
|
||||
const uchar* record0, const uchar* record1);
|
||||
#endif
|
||||
|
||||
public:
|
||||
// mysql sometimes retires a txn before a cursor that references the txn is closed.
|
||||
// for example, commit is sometimes called before index_end. the following methods
|
||||
|
@ -824,10 +829,5 @@ static inline bool key_is_clustering(const KEY *key) {
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef WITH_WSREP
|
||||
int wsrep_append_keys(THD *thd, bool shared,
|
||||
const uchar* record0, const uchar* record1);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue