We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we want to sort a request, FieldSort doesn’t implement SortOptionVariant, so we cannot use it in SearchRequest with SortOptionsBuilders
SearchRequest.Builder searchRequest = new SearchRequest.Builder() .sort(SortOptionsBuilders.field().field(“lastName”).order(SortOrder.Desc).build()._toSortOptions());
or
SearchRequest.Builder searchRequest = new SearchRequest.Builder() .sort(FieldSort.of(s → s.field(“lastName”).order(ortOrder.Desc))._toSortOptions());
._toSortOptions() not available
However ScoreSort, GeoDistanceSort and ScriptSort implement SortOptionVariant
package org.opensearch.client.opensearch._types; public class FieldSort implements SortOptionsVariant, JsonpSerializable
opensearch-java:2.10.4
The text was updated successfully, but these errors were encountered:
[Catch All Triage - 1, 2, 3]
Sorry, something went wrong.
No branches or pull requests
What is the bug?
When we want to sort a request, FieldSort doesn’t implement SortOptionVariant, so we cannot use it in SearchRequest with SortOptionsBuilders
How can one reproduce the bug?
SearchRequest.Builder searchRequest = new SearchRequest.Builder() .sort(SortOptionsBuilders.field().field(“lastName”).order(SortOrder.Desc).build()._toSortOptions());
or
SearchRequest.Builder searchRequest = new SearchRequest.Builder() .sort(FieldSort.of(s → s.field(“lastName”).order(ortOrder.Desc))._toSortOptions());
._toSortOptions() not available
However ScoreSort, GeoDistanceSort and ScriptSort implement SortOptionVariant
What is the expected behavior?
package org.opensearch.client.opensearch._types;
public class FieldSort implements SortOptionsVariant, JsonpSerializable
What is your host/environment?
opensearch-java:2.10.4
The text was updated successfully, but these errors were encountered: