Bump version and update HISTORY

This commit is contained in:
Yanqin Jin 2020-11-05 12:00:18 -08:00
parent 1f73513576
commit 84728944d3
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
# Rocksdb Change Log
## 6.14.4 (11/05/2020)
### Bug Fixes
Fixed a potential bug caused by evaluating `TableBuilder::NeedCompact()` before `TableBuilder::Finish()` in compaction job. For example, the `NeedCompact()` method of `CompactOnDeletionCollector` returned by built-in `CompactOnDeletionCollectorFactory` requires `BlockBasedTable::Finish()` to return the correct result. The bug can cause a compaction-generated file not to be marked for future compaction based on deletion ratio.
## 6.14.3 (10/30/2020)
### Bug Fixes
* Reverted a behavior change silently introduced in 6.14.2, in which the effects of the `ignore_unknown_options` flag (used in option parsing/loading functions) changed.

View File

@ -6,7 +6,7 @@
#define ROCKSDB_MAJOR 6
#define ROCKSDB_MINOR 14
#define ROCKSDB_PATCH 3
#define ROCKSDB_PATCH 4
// Do not use these. We made the mistake of declaring macros starting with
// double underscore. Now we have to live with our choice. We'll deprecate these