Home
last modified time | relevance | path

Searched refs:start_key_ (Results 1 – 9 of 9) sorted by relevance

/rocksdb-6.9/table/
Dsst_file_writer.cc114 file_info.smallest_range_del_key.assign(tombstone.start_key_.data(), in DeleteRange()
115 tombstone.start_key_.size()); in DeleteRange()
120 tombstone.start_key_, file_info.smallest_range_del_key) < 0) { in DeleteRange()
121 file_info.smallest_range_del_key.assign(tombstone.start_key_.data(), in DeleteRange()
122 tombstone.start_key_.size()); in DeleteRange()
Dtable_test.cc1536 ASSERT_EQ(t.start_key_, expected_t.start_key_); in TEST_P()
/rocksdb-6.9/db/
Ddbformat.h603 Slice start_key_; member
608 : start_key_(sk), end_key_(ek), seq_(sn) {} in RangeTombstone()
611 start_key_ = parsed_key.user_key; in RangeTombstone()
618 auto key = InternalKey(start_key_, seq_, kTypeRangeDeletion); in Serialize()
625 return InternalKey(start_key_, seq_, kTypeRangeDeletion); in SerializeKey()
Drange_del_aggregator_bench.cc136 return cmp->Compare(a.start_key_, b.start_key_) < 0; in operator ()()
Drange_tombstone_fragmenter_test.cc35 EXPECT_EQ(tombstone.start_key_, ExtractUserKey(iter->key())); in CheckIterPosition()
40 EXPECT_EQ(tombstone.start_key_, iter->start_key()); in CheckIterPosition()
Drange_del_aggregator_test.cc172 EXPECT_EQ(tombstone.start_key_, ExtractUserKey(iter->key())); in CheckIterPosition()
177 EXPECT_EQ(tombstone.start_key_, iter->start_key()); in CheckIterPosition()
/rocksdb-6.9/tools/
Dldb_cmd_impl.h349 std::string start_key_;
387 std::string start_key_;
Dldb_cmd.cc2364 start_key_ = options.find(ARG_FROM)->second;
2380 start_key_ = HexToString(start_key_);
2398 ranges[0] = Range(start_key_, end_key_); in DoCommand()
2488 start_key_ = itr->second;
2490 start_key_ = HexToString(start_key_);
2551 it->Seek(start_key_); in DoCommand()
/rocksdb-6.9/db/compaction/
Dcompaction_job.cc1209 int cmp = ucmp->Compare(*upper_bound, tombstone.start_key_); in FinishCompactionOutputFile()