| 154 | } |
| 155 | |
| 156 | void krmSetPreviouslyEmptyRange(Transaction* tr, |
| 157 | const KeyRef& mapPrefix, |
| 158 | const KeyRangeRef& keys, |
| 159 | const ValueRef& newValue, |
| 160 | const ValueRef& oldEndValue) { |
| 161 | KeyRange withPrefix = |
| 162 | KeyRangeRef(mapPrefix.toString() + keys.begin.toString(), mapPrefix.toString() + keys.end.toString()); |
| 163 | tr->set(withPrefix.begin, newValue); |
| 164 | tr->set(withPrefix.end, oldEndValue); |
| 165 | } |
| 166 | |
| 167 | void krmSetPreviouslyEmptyRange(CommitTransactionRef& tr, |
| 168 | Arena& trArena, |
no test coverage detected