Update HISTORY.md, fix unity_test failure (#4479)
Summary: Follow-up to https://github.com/facebook/rocksdb/pull/4432. Pull Request resolved: https://github.com/facebook/rocksdb/pull/4479 Differential Revision: D10304151 Pulled By: abhimadan fbshipit-source-id: 3608b95c324702ca26791f95cb26dae1d49efbe7
This commit is contained in:
parent
7ca1a1f0d8
commit
9c6fea7fe1
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
* Fix corner case where a write group leader blocked due to write stall blocks other writers in queue with WriteOptions::no_slowdown set.
|
* Fix corner case where a write group leader blocked due to write stall blocks other writers in queue with WriteOptions::no_slowdown set.
|
||||||
|
* Fix in-memory range tombstone truncation to avoid erroneously covering newer keys at a lower level, and include range tombstones in compacted files whose largest key is the range tombstone's start key.
|
||||||
|
|
||||||
## 5.17.0 (10/05/2018)
|
## 5.17.0 (10/05/2018)
|
||||||
### Public API Change
|
### Public API Change
|
||||||
|
@ -10,8 +10,6 @@
|
|||||||
|
|
||||||
namespace rocksdb {
|
namespace rocksdb {
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
struct TombstoneStartKeyComparator {
|
struct TombstoneStartKeyComparator {
|
||||||
explicit TombstoneStartKeyComparator(const InternalKeyComparator* c)
|
explicit TombstoneStartKeyComparator(const InternalKeyComparator* c)
|
||||||
: cmp(c) {}
|
: cmp(c) {}
|
||||||
@ -36,8 +34,6 @@ struct ParsedInternalKeyComparator {
|
|||||||
const InternalKeyComparator* cmp;
|
const InternalKeyComparator* cmp;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
// An UncollapsedRangeDelMap is quick to create but slow to answer ShouldDelete
|
// An UncollapsedRangeDelMap is quick to create but slow to answer ShouldDelete
|
||||||
// queries.
|
// queries.
|
||||||
class UncollapsedRangeDelMap : public RangeDelMap {
|
class UncollapsedRangeDelMap : public RangeDelMap {
|
||||||
|
Loading…
Reference in New Issue
Block a user