forked from rust-rocksdb/rust-rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update rocksdb with the following changes: ``` cb7efe6d7 2020-01-08 zbk602423539@gmail.. Add oldest snapshot sequence property (#6228) (#141) c7d775168 2020-01-07 zbk602423539@gmail.. statistics: make ticker and histogram extendible (#136) ebec1bd8a 2020-01-07 bupt2013211450@gma.. add multibatch write into memtable (#131) 4dcfb8789 2020-01-07 zbk602423539@gmail.. fix invalid register for .seh_savexmm (#140) ``` Signed-off-by: Yi Wu <[email protected]>
- Loading branch information
yiwu-arbug
committed
Jan 9, 2020
1 parent
1ef6fe7
commit e552e09
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule rocksdb
updated
32 files
+2 −1 | .travis.yml | |
+1 −2 | db/c.cc | |
+6 −0 | db/db_basic_test.cc | |
+12 −0 | db/db_impl/db_impl.h | |
+10 −0 | db/db_impl/db_impl_open.cc | |
+166 −10 | db/db_impl/db_impl_write.cc | |
+3 −0 | db/db_properties_test.cc | |
+6 −0 | db/db_test.cc | |
+12 −0 | db/db_test_util.cc | |
+3 −0 | db/db_test_util.h | |
+60 −1 | db/db_write_test.cc | |
+12 −0 | db/internal_stats.cc | |
+2 −0 | db/internal_stats.h | |
+8 −0 | db/snapshot_impl.h | |
+37 −0 | db/write_batch.cc | |
+18 −0 | db/write_batch_internal.h | |
+57 −14 | db/write_thread.cc | |
+31 −0 | db/write_thread.h | |
+16 −0 | include/rocksdb/db.h | |
+14 −0 | include/rocksdb/options.h | |
+2 −0 | include/rocksdb/statistics.h | |
+2 −1 | java/rocksjni/statisticsjni.h | |
+5 −180 | monitoring/statistics.cc | |
+3 −97 | monitoring/statistics.h | |
+308 −0 | monitoring/statistics_impl.h | |
+5 −1 | options/db_options.cc | |
+1 −0 | options/db_options.h | |
+3 −0 | options/options_helper.cc | |
+1 −0 | options/options_settable_test.cc | |
+2 −1 | tools/block_cache_analyzer/block_cache_trace_analyzer.cc | |
+74 −6 | tools/db_bench_tool.cc | |
+45 −0 | util/safe_queue.h |