@@ -104,7 +104,7 @@ public TestDataBlockEncoders(boolean includesMemstoreTS, boolean includesTag,
104104 this .useOffheapData = useOffheapData ;
105105 }
106106
107- private HFileBlockEncodingContext getEncodingContext (Configuration conf ,
107+ private HFileBlockEncodingContext getEncodingContext (Configuration conf ,
108108 Compression .Algorithm algo , DataBlockEncoding encoding ) {
109109 DataBlockEncoder encoder = encoding .getEncoder ();
110110 HFileContext meta = new HFileContextBuilder ()
@@ -339,11 +339,11 @@ public void testRowIndexWithTagsButNoTagsInCell() throws IOException {
339339 kvList .add (expectedKV );
340340 DataBlockEncoding encoding = DataBlockEncoding .ROW_INDEX_V1 ;
341341 DataBlockEncoder encoder = encoding .getEncoder ();
342- ByteBuffer encodedBuffer =
343- encodeKeyValues ( encoding , kvList , getEncodingContext (conf , Algorithm .NONE , encoding ), false );
342+ ByteBuffer encodedBuffer = encodeKeyValues ( encoding , kvList ,
343+ getEncodingContext (conf , Algorithm .NONE , encoding ), false );
344344 HFileContext meta =
345- new HFileContextBuilder ().withHBaseCheckSum (false ).withIncludesMvcc (includesMemstoreTS )
346- .withIncludesTags (includesTags ).withCompression (Compression .Algorithm .NONE ).build ();
345+ new HFileContextBuilder ().withHBaseCheckSum (false ).withIncludesMvcc (includesMemstoreTS )
346+ .withIncludesTags (includesTags ).withCompression (Compression .Algorithm .NONE ).build ();
347347 DataBlockEncoder .EncodedSeeker seeker =
348348 encoder .createSeeker (encoder .newDataBlockDecodingContext (meta ));
349349 seeker .setCurrentBuffer (new SingleByteBuff (encodedBuffer ));
0 commit comments