Searched refs:operands (Results 1 – 9 of 9) sorted by relevance
| /rocksdb-6.9/utilities/ |
| D | util_merge_operators_test.cc | 17 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/ |
| D | db_iter_stress_test.cc | 332 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()
|
| D | merge_helper.cc | 53 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()
|
| D | db_merge_operand_test.cc | 37 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()
|
| D | db_merge_operator_test.cc | 71 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()
|
| D | merge_helper.h | 49 const std::vector<Slice>& operands,
|
| /rocksdb-6.9/utilities/cassandra/ |
| D | merge_operator.h | 35 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/ |
| D | 2014-04-07-rocksdb-2-8-release.markdown | 24 …ialMergeMulti() that allows users to do partial merges against multiple operands. This function en…
|
| /rocksdb-6.9/ |
| D | HISTORY.md | 62 … 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.
|