Skip to content

Commit

Permalink
Fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
jpountz committed Apr 9, 2024
1 parent a955949 commit cc74764
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Expand Up @@ -80,7 +80,7 @@ public String typeName() {
@Override
public IndexFieldData.Builder fielddataBuilder(FieldDataContext fieldDataContext) {
failIfNoDocValues();
return new SortedNumericIndexFieldData.Builder(name(), NumericType.LONG, Murmur3DocValueField::new);
return new SortedNumericIndexFieldData.Builder(name(), NumericType.LONG, Murmur3DocValueField::new, isIndexed());
}

@Override
Expand Down
Expand Up @@ -362,7 +362,8 @@ public IndexFieldData.Builder fielddataBuilder(FieldDataContext fieldDataContext
valuesSourceType,
(dv, n) -> {
throw new UnsupportedOperationException();
}
},
isIndexed()
).build(cache, breakerService);
return new UnsignedLongIndexFieldData(signedLongValues, UnsignedLongDocValuesField::new, isIndexed());
};
Expand Down

0 comments on commit cc74764

Please sign in to comment.