Fix for build failure.

This commit is contained in:
Nirbhay Choubey 2014-04-15 22:16:11 -04:00
parent 99838736bc
commit df1ee18c27

View file

@ -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