Skip to content

Commit

Permalink
BATCH_GET:change a little
Browse files Browse the repository at this point in the history
  • Loading branch information
olivertang committed Jan 28, 2022
1 parent f270e56 commit 8a77c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/function_test/test_batch_get.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ TEST(batch_get, set_and_then_batch_get)
one_full_key.hash_key.assign(hash_key.c_str(), 0, hash_key.size());
one_full_key.__isset.sort_key = true;
one_full_key.sort_key.assign(sort_key.c_str(), 0, sort_key.size());
batch_request.keys.emplace_back(one_full_key);
batch_request.keys.emplace_back(std::move(one_full_key));

key_pair_list.emplace_back(std::move(hash_key), std::move(sort_key));
value_list.push_back(std::move(value));
Expand Down

0 comments on commit 8a77c88

Please sign in to comment.