summaryrefslogtreecommitdiff
path: root/storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc
diff options
context:
space:
mode:
Diffstat (limited to 'storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc')
-rw-r--r--storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc b/storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc
index ce245ce69f9..6a00afa4a51 100644
--- a/storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc
+++ b/storage/tokudb/ft-index/src/tests/hot-optimize-table-tests.cc
@@ -247,7 +247,8 @@ hot_test(DB* db, unsigned int size)
// Flatten the tree.
verbose ? printf("Calling hot optimize...\n") : 0;
- r = db->hot_optimize(db, NULL, NULL, NULL, NULL);
+ uint64_t loops_run;
+ r = db->hot_optimize(db, NULL, NULL, NULL, NULL, &loops_run);
assert(r == 0);
verbose ? printf("HOT Finished!\n") : 0;
for (unsigned int i = 0; i < size; ++i) {