diff options
Diffstat (limited to 'storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc')
-rw-r--r-- | storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc b/storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc index a3290028ac4..f68b4d72e53 100644 --- a/storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc +++ b/storage/tokudb/ft-index/ft/tests/verify-misrouted-msgs.cc @@ -117,7 +117,8 @@ append_leaf(FTNODE leafnode, void *key, size_t keylen, void *val, size_t vallen) // apply an insert to the leaf node MSN msn = next_dummymsn(); FT_MSG_S cmd = { FT_INSERT, msn, xids_get_root_xids(), .u={.id = { &thekey, &theval }} }; - toku_ft_bn_apply_cmd_once(BLB(leafnode,0), &cmd, idx, NULL, TXNID_NONE, make_gc_info(false), NULL, NULL); + txn_gc_info gc_info(nullptr, TXNID_NONE, TXNID_NONE, false); + toku_ft_bn_apply_cmd_once(BLB(leafnode,0), &cmd, idx, NULL, &gc_info, NULL, NULL); // dont forget to dirty the node leafnode->dirty = 1; |