Skip to content

Commit

Permalink
add CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
gf2121 committed Feb 8, 2025
1 parent 6f8fc2b commit 654f0a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lucene/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ Optimizations

# GITHUB#14169: Optimize ContextQuery with big number of contexts. (Mayya Sharipova)

# GITHUB#14203: Use Vector API to decode BKD docIds. (GuoFeng)

Bug Fixes
---------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
/** Public for jmh benchmark. */
public final class DocIdsWriter {

private static final BKDDecodingUtil BDU = VectorizationProvider.getInstance().newBKDDecodingUtil();
private static final BKDDecodingUtil BDU =
VectorizationProvider.getInstance().newBKDDecodingUtil();
private static final byte CONTINUOUS_IDS = (byte) -2;
private static final byte BITSET_IDS = (byte) -1;
private static final byte DELTA_BPV_16 = (byte) 16;
Expand Down

0 comments on commit 654f0a6

Please sign in to comment.