From df1ee18c272fd2b39543f42f56fc554934e60fb9 Mon Sep 17 00:00:00 2001 From: Nirbhay Choubey Date: Tue, 15 Apr 2014 22:16:11 -0400 Subject: [PATCH] Fix for build failure. --- storage/tokudb/ha_tokudb.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/storage/tokudb/ha_tokudb.h b/storage/tokudb/ha_tokudb.h index 3b6a2c29e40..0ee8929a05d 100644 --- a/storage/tokudb/ha_tokudb.h +++ b/storage/tokudb/ha_tokudb.h @@ -794,6 +794,11 @@ private: bool check_upsert(THD *thd, List &update_fields, List &update_values); int send_upsert_message(THD *thd, List &update_fields, List &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