-
Notifications
You must be signed in to change notification settings - Fork 477
Open
Description
public Select limit(int limit, long offSet) {
if (limit > 0 && offSet > 0L) {
this.limit = Optional.of(limit);
this.offSet = Optional.of(offSet);
return this;
} else {
throw new IllegalArgumentException("Invalid LIMIT and OFFSET Value, must be strictly positive");
}
}
influxdb allow ” limit = 0 and offset =0 “
sunxuelin
Metadata
Metadata
Assignees
Labels
No labels