xtern commented on code in PR #7010:
URL: https://github.com/apache/ignite-3/pull/7010#discussion_r2541990461
##########
modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/fsm/CursorInitializationPhaseHandler.java:
##########
@@ -46,7 +47,13 @@ public Result handle(Query query) {
CompletableFuture<Void> awaitFuture =
query.executor.executePlan(context, plan)
.thenCompose(dataCursor -> {
- AsyncSqlCursor<InternalSqlRow> cursor =
query.executor.createAndSaveSqlCursor(query, dataCursor);
+ AsyncSqlCursor<InternalSqlRow> cursor;
+ try {
+ cursor = query.executor.createAndSaveSqlCursor(query,
dataCursor);
Review Comment:
I think you right.
It looks like I'm running into a separate DDL script cancellation
issue.https://issues.apache.org/jira/browse/IGNITE-27102
--
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]