[Java] Fixed compile error due to the removal of ReadOptions.prefix_seek, minor improvement on DbBenchmark.java.

This commit is contained in:
Yueh-Hsuan Chiang
2014-04-27 21:46:30 -07:00
parent 7ca06a3974
commit 9895465c6a
6 changed files with 56 additions and 69 deletions

View File

@@ -27,12 +27,6 @@ public class ReadOptionsTest {
assert(opt.fillCache() == boolValue);
}
{ // PrefixSeek test
boolean boolValue = rand.nextBoolean();
opt.setPrefixSeek(boolValue);
assert(opt.prefixSeek() == boolValue);
}
{ // Tailing test
boolean boolValue = rand.nextBoolean();
opt.setTailing(boolValue);