mirror of
https://github.com/facebook/rocksdb.git
synced 2024-11-26 16:30:56 +00:00
[RocksJava] Integrated changes for D34857
This commit is contained in:
parent
12350115da
commit
c345d1ee88
|
@ -243,7 +243,7 @@ public class ColumnFamilyOptionsTest {
|
|||
ColumnFamilyOptions opt = null;
|
||||
try {
|
||||
opt = new ColumnFamilyOptions();
|
||||
boolean boolValue = rand.nextBoolean();
|
||||
final boolean boolValue = rand.nextBoolean();
|
||||
opt.setLevelCompactionDynamicLevelBytes(boolValue);
|
||||
assertThat(opt.levelCompactionDynamicLevelBytes())
|
||||
.isEqualTo(boolValue);
|
||||
|
|
|
@ -205,7 +205,7 @@ public class OptionsTest {
|
|||
Options opt = null;
|
||||
try {
|
||||
opt = new Options();
|
||||
boolean boolValue = rand.nextBoolean();
|
||||
final boolean boolValue = rand.nextBoolean();
|
||||
opt.setLevelCompactionDynamicLevelBytes(boolValue);
|
||||
assertThat(opt.levelCompactionDynamicLevelBytes())
|
||||
.isEqualTo(boolValue);
|
||||
|
|
Loading…
Reference in a new issue