@@ -1069,9 +1069,9 @@ public void iteratorWithBaseOverwriteFalse() throws RocksDBException {
10691069 @ Test
10701070 public void wideColumnBatch () throws RocksDBException {
10711071 try (final RocksDB db = RocksDB .open (dbFolder .getRoot ().getAbsolutePath ());
1072- final WriteBatchWithIndex wbwi = new WriteBatchWithIndex (false );
1073- final WriteOptions wOpt = new WriteOptions ();
1074- final ColumnFamilyHandle cf = db .getDefaultColumnFamily ()) {
1072+ final WriteBatchWithIndex wbwi = new WriteBatchWithIndex (false );
1073+ final WriteOptions wOpt = new WriteOptions ();
1074+ final ColumnFamilyHandle cf = db .getDefaultColumnFamily ()) {
10751075 WideColumn <byte []> column = new WideColumn <>("name" .getBytes (UTF_8 ), "value" .getBytes (UTF_8 ));
10761076 List <WideColumn <byte []>> columns = new ArrayList <>();
10771077 columns .add (column );
@@ -1093,9 +1093,9 @@ public void wideColumnBatch() throws RocksDBException {
10931093 @ Test
10941094 public void wideColumnBatchDirect () throws RocksDBException {
10951095 try (final RocksDB db = RocksDB .open (dbFolder .getRoot ().getAbsolutePath ());
1096- final WriteBatchWithIndex wbwi = new WriteBatchWithIndex (false );
1097- final WriteOptions wOpt = new WriteOptions ();
1098- final ColumnFamilyHandle cf = db .getDefaultColumnFamily ()) {
1096+ final WriteBatchWithIndex wbwi = new WriteBatchWithIndex (false );
1097+ final WriteOptions wOpt = new WriteOptions ();
1098+ final ColumnFamilyHandle cf = db .getDefaultColumnFamily ()) {
10991099 ByteBuffer key = ByteBuffer .allocateDirect (10 );
11001100 key .put ("key" .getBytes (UTF_8 ));
11011101 key .flip ();
0 commit comments