Lines Matching refs:Get
231 std::string Get(const std::string& k, const Snapshot* snapshot = nullptr) { in Get() function in ROCKSDB_NAMESPACE::CheckpointTest
236 Status s = db_->Get(options, k, &result); in Get()
245 std::string Get(int cf, const std::string& k, in Get() function in ROCKSDB_NAMESPACE::CheckpointTest
251 Status s = db_->Get(options, handles_[cf], k, &result); in Get()
284 ASSERT_EQ("v2", Get(key)); in TEST_F()
286 ASSERT_EQ("v2", Get(key)); in TEST_F()
290 ASSERT_OK(snapshotDB->Get(roptions, key, &result)); in TEST_F()
304 ASSERT_EQ("v1", Get(key)); in TEST_F()
473 ASSERT_OK(snapshotDB->Get(roptions, cphandles[0], "Default", &result)); in TEST_F()
475 ASSERT_OK(snapshotDB->Get(roptions, cphandles[1], "one", &result)); in TEST_F()
477 ASSERT_OK(snapshotDB->Get(roptions, cphandles[2], "two", &result)); in TEST_F()
532 ASSERT_OK(snapshotDB->Get(roptions, cphandles[0], "Default", &result)); in TEST_F()
534 ASSERT_OK(snapshotDB->Get(roptions, cphandles[1], "one", &result)); in TEST_F()
536 ASSERT_OK(snapshotDB->Get(roptions, cphandles[2], "two", &result)); in TEST_F()
688 ASSERT_OK(snapshotDB->Get(read_options, "foo", &value)); in TEST_F()
690 ASSERT_OK(snapshotDB->Get(read_options, cf_handles[1], "foocfa", &value)); in TEST_F()
743 ASSERT_OK(snapshot_db->Get(read_opts, "key1", &get_result)); in TEST_F()
766 ASSERT_OK(snapshot_db->Get(read_opts, "foo", &get_result)); in TEST_F()
801 s = snapshot_db->Get(read_opts, snapshot_handles[i], "foo", &get_result); in TEST_F()