You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ec2.images are limited to self-owned images only, because otherwise, the query would never finish. ec2.snapshots has a default limit of 100 results set for the same reason.
To address this, it is required to:
add predicate pushdown to allow fetching a limited number of results
ec2.images
are limited to self-owned images only, because otherwise, the query would never finish.ec2.snapshots
has a default limit of 100 results set for the same reason.To address this, it is required to:
Iterator
instead of aList
of rows, since it's lazy, to allow to cancel queries; same as in https://github.com/nineinchnick/trino-rest/blob/master/trino-rest-github/src/main/java/pl/net/was/rest/github/GithubRest.java#L1905The text was updated successfully, but these errors were encountered: