Skip to content

Commit

Permalink
Fix simple text byte vector iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
benwtrent committed Oct 1, 2024
1 parent f411adf commit 32b62f7
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,11 @@ public byte[] vectorValue(int ord) {
return binaryValue.bytes;
}

@Override
public int ordToDoc(int ord) {
return entry.ordToDoc[ord];
}

@Override
public DocIndexIterator iterator() {
return createSparseIterator();
Expand Down

0 comments on commit 32b62f7

Please sign in to comment.