[RocksJava] Minor lint correction
This commit is contained in:
parent
e46450da6d
commit
3f9c95a519
@ -151,7 +151,8 @@ public class ColumnFamilyTest {
|
|||||||
cfDescriptors.add(new ColumnFamilyDescriptor(RocksDB.DEFAULT_COLUMN_FAMILY));
|
cfDescriptors.add(new ColumnFamilyDescriptor(RocksDB.DEFAULT_COLUMN_FAMILY));
|
||||||
db = RocksDB.open(options, dbFolder.getRoot().getAbsolutePath(),
|
db = RocksDB.open(options, dbFolder.getRoot().getAbsolutePath(),
|
||||||
cfDescriptors, columnFamilyHandleList);
|
cfDescriptors, columnFamilyHandleList);
|
||||||
db.put(columnFamilyHandleList.get(0), new WriteOptions(), "key1".getBytes(), "value".getBytes());
|
db.put(columnFamilyHandleList.get(0), new WriteOptions(),
|
||||||
|
"key1".getBytes(), "value".getBytes());
|
||||||
db.put("key2".getBytes(), "12345678".getBytes());
|
db.put("key2".getBytes(), "12345678".getBytes());
|
||||||
byte[] outValue = new byte[5];
|
byte[] outValue = new byte[5];
|
||||||
// not found value
|
// not found value
|
||||||
|
Loading…
x
Reference in New Issue
Block a user