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
Code change needed:
in.zapr.druid.druidry.query.scan.DruidScanQuery.java
private String order;
@builder private DruidCustomScanQuery(@nonnull DataSource dataSource, List virtualColumns, .......... ....... Long limit, Boolean legacy, Context context) { . . . this.order = order; if (order != null) { Preconditions.checkArgument((order.equals("ascending") || order.equals("descending")), "only order ascending or descending is supported"); } . . .
}
The text was updated successfully, but these errors were encountered:
Ready for review #173
Sorry, something went wrong.
No branches or pull requests
Code change needed:
in.zapr.druid.druidry.query.scan.DruidScanQuery.java
private String order;
@builder
private DruidCustomScanQuery(@nonnull DataSource dataSource, List virtualColumns, ..........
.......
Long limit, Boolean legacy, Context context) {
.
.
.
this.order = order;
if (order != null) {
Preconditions.checkArgument((order.equals("ascending") || order.equals("descending")),
"only order ascending or descending is supported");
}
.
.
.
}
The text was updated successfully, but these errors were encountered: