Skip to content

Commit

Permalink
Fixed CsvTests which need to mock SearchStats properly
Browse files Browse the repository at this point in the history
  • Loading branch information
craigtaverner committed Oct 30, 2024
1 parent 090ad4f commit b2cb257
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,19 @@ public byte[] max(String field, DataType dataType) {
public boolean isSingleValue(String field) {
return false;
}

@Override
public boolean isIndexed(String field) {
return true;
}

@Override
public boolean hasDocValues(String field) {
return true;
}

@Override
public boolean hasIdenticalDelegate(String field) {
return true;
}
}

0 comments on commit b2cb257

Please sign in to comment.