-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31700: c-deps: bump RocksDB to pick up more range deletion fixes r=petermattis a=benesch Picks up cockroachdb/rocksdb#17 and cockroachdb/rocksdb#18, which fix a rare edge case in which keys could go missing if a range deletion spanned SSTs in the wrong way. Release note: None Co-authored-by: Nikhil Benesch <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule rocksdb
updated
18 files
+81 −1 | db/compaction.cc | |
+45 −0 | db/compaction.h | |
+5 −4 | db/compaction_job.cc | |
+2 −2 | db/db_iter.cc | |
+254 −0 | db/db_range_del_test.cc | |
+9 −7 | db/dbformat.h | |
+176 −86 | db/range_del_aggregator.cc | |
+43 −9 | db/range_del_aggregator.h | |
+259 −104 | db/range_del_aggregator_test.cc | |
+12 −5 | db/table_cache.cc | |
+3 −1 | db/table_cache.h | |
+19 −58 | db/version_set.cc | |
+9 −9 | include/rocksdb/utilities/ldb_cmd.h | |
+36 −24 | table/block_based_table_reader.cc | |
+204 −0 | tools/ldb_cmd.cc | |
+53 −0 | tools/ldb_cmd_impl.h | |
+42 −1 | tools/ldb_test.py | |
+2 −0 | tools/ldb_tool.cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters