@@ -376,7 +376,8 @@ public long cost() {
376376 }
377377
378378 @ Override
379- public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset ) throws IOException {
379+ public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset )
380+ throws IOException {
380381 final int docCount = docs .count ();
381382 if (valuesSorted && ords instanceof BaseDenseNumericValues denseOrds ) {
382383 int firstDoc = docs .get (offset );
@@ -430,7 +431,8 @@ public TermsEnum termsEnum() throws IOException {
430431 }
431432
432433 @ Override
433- public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset ) throws IOException {
434+ public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset )
435+ throws IOException {
434436 return null ;
435437 }
436438 }
@@ -1184,7 +1186,6 @@ public long longValue() {
11841186 private long [] lookaheadBlock ;
11851187 private IndexInput lookaheadData = null ;
11861188
1187-
11881189 @ Override
11891190 public int docID () {
11901191 return doc ;
@@ -1219,7 +1220,7 @@ public long longValue() throws IOException {
12191220 final int index = doc ;
12201221 final int blockIndex = index >>> ES819TSDBDocValuesFormat .NUMERIC_BLOCK_SHIFT ;
12211222 final int blockInIndex = index & ES819TSDBDocValuesFormat .NUMERIC_BLOCK_MASK ;
1222- if (blockIndex == currentBlockIndex ) {
1223+ if (blockIndex == currentBlockIndex ) {
12231224 return currentBlock [blockInIndex ];
12241225 }
12251226 if (blockIndex == lookaheadBlockIndex ) {
@@ -1240,7 +1241,8 @@ public long longValue() throws IOException {
12401241 }
12411242
12421243 @ Override
1243- public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset ) throws IOException {
1244+ public BlockLoader .Block tryReadColumnAtATime (BlockLoader .BlockFactory factory , BlockLoader .Docs docs , int offset )
1245+ throws IOException {
12441246 assert maxOrd == -1 : "unexpected maxOrd[" + maxOrd + "]" ;
12451247 final int docsCount = docs .count ();
12461248 doc = docs .get (docsCount - 1 );
@@ -1282,7 +1284,7 @@ public BlockLoader.Block tryReadColumnAtATime(BlockLoader.BlockFactory factory,
12821284 long lookAheadValueAt (int targetDoc ) throws IOException {
12831285 final int blockIndex = targetDoc >>> ES819TSDBDocValuesFormat .NUMERIC_BLOCK_SHIFT ;
12841286 final int valueIndex = targetDoc & ES819TSDBDocValuesFormat .NUMERIC_BLOCK_MASK ;
1285- if (blockIndex == currentBlockIndex ) {
1287+ if (blockIndex == currentBlockIndex ) {
12861288 return currentBlock [valueIndex ];
12871289 }
12881290 // load data to the lookahead block
0 commit comments