summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYanqin Jin <yanqin@fb.com>2020-11-15 15:45:38 -0800
committerYanqin Jin <yanqin@fb.com>2020-11-15 15:45:38 -0800
commit35d8e36ef1b8e3e0759ca81215f855226a0a54bd (patch)
tree13f9dfb811d0f6ea572ce10747892f8dfbfddc9f
parent71e9a1a2be5f89f4f282ff0fd309b911de48331d (diff)
Bump version and update HISTORYv6.14.5
-rw-r--r--HISTORY.md4
-rw-r--r--include/rocksdb/version.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/HISTORY.md b/HISTORY.md
index bde749ff1..99a33ab70 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,4 +1,8 @@
# Rocksdb Change Log
+## 6.14.5 (11/15/2020)
+### Bug Fixes
+* Fix a bug of encoding and parsing BlockBasedTableOptions::read_amp_bytes_per_bit as a 64-bit integer.
+
## 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.
diff --git a/include/rocksdb/version.h b/include/rocksdb/version.h
index 7c78bfed1..6f2e404db 100644
--- a/include/rocksdb/version.h
+++ b/include/rocksdb/version.h
@@ -6,7 +6,7 @@
#define ROCKSDB_MAJOR 6
#define ROCKSDB_MINOR 14
-#define ROCKSDB_PATCH 4
+#define ROCKSDB_PATCH 5
// 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