[Java] Fix compile error on DbBenchmark.java
Summary: Fix compile error on DbBenchmark.java Test Plan: make rocksdbjava make jdb_bench
This commit is contained in:
parent
4eb5a40f7d
commit
df3373fbf7
@ -523,8 +523,8 @@ public class DbBenchmark {
|
||||
BlockBasedTableConfig table_options = new BlockBasedTableConfig();
|
||||
table_options.setBlockSize((Long)flags_.get(Flag.block_size))
|
||||
.setBlockCacheSize((Long)flags_.get(Flag.cache_size))
|
||||
.setFilterBitsPerKey((Integer)flags_.get(Flag.bloom_bits))
|
||||
.setCacheNumShardBits((Integer)flags_.get(Flag.cache_numshardbits));
|
||||
.setCacheNumShardBits(
|
||||
(Integer)flags_.get(Flag.cache_numshardbits));
|
||||
options.setTableFormatConfig(table_options);
|
||||
}
|
||||
options.setWriteBufferSize(
|
||||
|
Loading…
Reference in New Issue
Block a user