From bf2f50418896536fadbcc6020a130a5445479fa3 Mon Sep 17 00:00:00 2001 From: Hui Xiao Date: Fri, 3 Dec 2021 12:49:55 -0800 Subject: [PATCH] Add Java API change HISTORY section for #9212 (#9243) Summary: Context/Summary: https://github.com/facebook/rocksdb/issues/9212 removed a Java public API without noting it in HISTORY. Pull Request resolved: https://github.com/facebook/rocksdb/pull/9243 Test Plan: Existing tests. Reviewed By: ajkr Differential Revision: D32841050 Pulled By: hx235 fbshipit-source-id: 3b771ffef3ba718f8d70201747ee0e5cbf6de52f --- HISTORY.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index a64cf75a4..8acc96d53 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -12,6 +12,9 @@ ### Performance Improvements * Replaced map property `TableProperties::properties_offsets` with uint64_t property `external_sst_file_global_seqno_offset` to save table properties's memory. +### Java API Changes +* Removed Java API `TableProperties.getPropertiesOffsets()` as it exposed internal details to external users. + ## 6.27.0 (2021-11-19) ### New Features * Added new ChecksumType kXXH3 which is faster than kCRC32c on almost all x86\_64 hardware.