Skip to content

Commit

Permalink
Minor change to IndexOrDocValuesQuery#toString (#12791)
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamvishu authored Nov 13, 2023
1 parent a70432c commit be27303
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ public Query getRandomAccessQuery() {

@Override
public String toString(String field) {
return indexQuery.toString(field);
return "IndexOrDocValuesQuery(indexQuery="
+ indexQuery.toString(field)
+ ", dvQuery="
+ dvQuery.toString(field)
+ ")";
}

@Override
Expand Down

0 comments on commit be27303

Please sign in to comment.