From 7aa66c704f71d74ff97090caee1d29c4dff22a21 Mon Sep 17 00:00:00 2001 From: sdong Date: Mon, 27 Jan 2020 17:44:17 -0800 Subject: [PATCH] Move HISTORY.md entry of hash index fix from 6.7 to unreleased (#6337) Summary: Commits related to hash index fix have been reverted in 6.7.fb branch. Update HISTORY.md to keep it in sync. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6337 Differential Revision: D19593717 fbshipit-source-id: 466178dc6205c9e41ccced41bf281a0952bdc2ca --- HISTORY.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 6ef09b2c3d..384135e62d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,7 @@ # Rocksdb Change Log ## Unreleased +### Bug Fixes +* Fix incorrect results while block-based table uses kHashSearch, together with Prev()/SeekForPrev(). ## 6.7.0 (01/21/2020) ### Public API Change @@ -14,7 +16,6 @@ * Fix a race condition for cfd->log_number_ between manifest switch and memtable switch (PR 6249) when number of column families is greater than 1. * Fix a bug on fractional cascading index when multiple files at the same level contain the same smallest user key, and those user keys are for merge operands. In this case, Get() the exact key may miss some merge operands. * Delcare kHashSearch index type feature-incompatible with index_block_restart_interval larger than 1. -* Fix incorrect results while block-based table uses kHashSearch, together with Prev()/SeekForPrev(). * Fixed an issue where the thread pools were not resized upon setting `max_background_jobs` dynamically through the `SetDBOptions` interface. * Fix a bug that can cause write threads to hang when a slowdown/stall happens and there is a mix of writers with WriteOptions::no_slowdown set/unset. * Fixed an issue where an incorrect "number of input records" value was used to compute the "records dropped" statistics for compactions.