ygerzhedovich commented on code in PR #2882:
URL: https://github.com/apache/ignite-3/pull/2882#discussion_r1427883352
##########
modules/client/src/main/java/org/apache/ignite/internal/client/table/ClientRecordBinaryView.java:
##########
@@ -380,4 +388,34 @@ public CompletableFuture<Void> streamData(Publisher<Tuple>
publisher, @Nullable
return ClientDataStreamer.streamData(publisher, opts, batchSender,
provider, tbl);
}
+
+ private CompletableFuture<AsyncResultSet<Tuple>> executeAsync(
+ @Nullable Transaction tx,
+ @Nullable Criteria criteria,
+ CriteriaQueryOptions opts
+ ) {
+ //TODO: implement serialization of criteria to SQL
https://issues.apache.org/jira/browse/IGNITE-20879
+ var query = "SELECT * FROM " + tbl.name();
+
+ var statement =
tbl.sql().statementBuilder().query(query).pageSize(opts.pageSize()).build();
Review Comment:
`var` is not allowed in the context
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]