ygerzhedovich commented on code in PR #5210: URL: https://github.com/apache/ignite-3/pull/5210#discussion_r1952683178
########## modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/prepare/PrepareServiceImpl.java: ########## @@ -226,21 +227,29 @@ public CompletableFuture<QueryPlan> prepareAsync( assert schemaName != null; - SchemaPlus schema = schemaManager.schema(operationContext.operationTime().longValue()) - .getSubSchema(schemaName); - - if (schema == null) { - return CompletableFuture.failedFuture(new SchemaNotFoundException(schemaName)); + IgniteSchemas rootSchema = schemaManager.schemas(operationContext.operationTime().longValue()); + if (rootSchema == null) { + return CompletableFuture.failedFuture(new SchemaNotFoundException("Root schema")); Review Comment: I don't understand such an error and can't imagine what the should user do in this case. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org