Home
last modified time | relevance | path

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

/rocksdb-6.9/utilities/
Dutil_merge_operators_test.cc17 std::vector<std::string> operands, in FullMergeV2() argument
23 std::vector<Slice> operands_slice(operands.begin(), operands.end()); in FullMergeV2()
36 std::string FullMergeV2(std::vector<std::string> operands, in FullMergeV2() argument
41 std::vector<Slice> operands_slice(operands.begin(), operands.end()); in FullMergeV2()
62 std::string PartialMergeMulti(std::deque<std::string> operands, in PartialMergeMulti() argument
65 std::deque<Slice> operands_slice(operands.begin(), operands.end()); in PartialMergeMulti()
/rocksdb-6.9/db/
Ddb_iter_stress_test.cc332 std::vector<Slice> operands; in FindValueForCurrentKey() local
343 operands.push_back(e.value); in FindValueForCurrentKey()
350 value = operands.back().ToString(); in FindValueForCurrentKey()
351 for (int i = (int)operands.size() - 2; i >= 0; --i) { in FindValueForCurrentKey()
353 value.append(operands[i].data(), operands[i].size()); in FindValueForCurrentKey()
Dmerge_helper.cc53 const std::vector<Slice>& operands, in TimedFullMerge() argument
60 if (operands.size() == 0) { in TimedFullMerge()
68 static_cast<uint64_t>(operands.size())); in TimedFullMerge()
73 const MergeOperator::MergeOperationInput merge_in(key, value, operands, in TimedFullMerge()
Ddb_merge_operand_test.cc37 bool ShouldMerge(const std::vector<Slice>& operands) const override { in TEST_F()
38 if (operands.size() > 0 && limit_ > 0 && operands.size() >= limit_) { in TEST_F()
Ddb_merge_operator_test.cc71 bool ShouldMerge(const std::vector<Slice>& operands) const override { in TEST_F()
72 if (operands.size() > 0 && limit_ > 0 && operands.size() >= limit_) { in TEST_F()
Dmerge_helper.h49 const std::vector<Slice>& operands,
/rocksdb-6.9/utilities/cassandra/
Dmerge_operator.h35 virtual bool ShouldMerge(const std::vector<Slice>& operands) const override { in ShouldMerge() argument
36 return operands_limit_ > 0 && operands.size() >= operands_limit_; in ShouldMerge()
/rocksdb-6.9/docs/_posts/
D2014-04-07-rocksdb-2-8-release.markdown24 …ialMergeMulti() that allows users to do partial merges against multiple operands. This function en…
/rocksdb-6.9/
DHISTORY.md62 … key, and those user keys are for merge operands. In this case, Get() the exact key may miss some …
377 * Fixed Get correctness bug in the presence of range tombstones where merge operands covered by a r…
411 * The merge operands are passed to `MergeOperator::ShouldMerge` in the reversed order relative to h…
475 * Disable rollback of merge operands in WritePrepared transactions to work around an issue in MyRoc…
669 * Remove option min_partial_merge_operands. Partial merge operands will always be merged in flush o…
847 * CompactionFilter now supports filtering of merge operands and merge results.
1115 …s a new function PartialMergeMulti() to allow users to do partial merges against multiple operands.