From 2888fa95b5a6a92d5e6e0185b2636df023142e10 Mon Sep 17 00:00:00 2001 From: Jijie Wei <64042495+jijiew@users.noreply.github.com> Date: Mon, 19 Apr 2021 13:20:54 -0700 Subject: [PATCH] Update HISTORY.md --- HISTORY.md | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.md b/HISTORY.md index a66b2adaa..eb22926f5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -13,6 +13,7 @@ * Fixed crash (divide by zero) when compression dictionary is applied to a file containing only range tombstones. * Fixed a backward iteration bug with partitioned filter enabled: not including the prefix of the last key of the previous filter partition in current filter partition can cause wrong iteration result. * Fixed a bug that allowed `DBOptions::max_open_files` to be set with a non-negative integer with `ColumnFamilyOptions::compaction_style = kCompactionStyleFIFO`. +* Fix a bug that prevents newly ingested files from being written with incorrect smallest/largest key metadata. Reading from a DB with pre-existing ingested files could still be problematic. ### Performance Improvements * On ARM platform, use `yield` instead of `wfe` to relax cpu to gain better performance.