PakhomovAlexander commented on code in PR #1731:
URL: https://github.com/apache/ignite-3/pull/1731#discussion_r1121408304
##########
modules/cli/src/main/java/org/apache/ignite/internal/cli/commands/sql/SqlCompleter.java:
##########
@@ -72,4 +73,9 @@ private static void addCandidate(String string,
List<Candidate> candidates) {
candidates.add(new Candidate(string));
candidates.add(new Candidate(string.toLowerCase()));
}
+
+ public void initStateAsync() {
+ // trigger schema loading in background
+ CompletableFuture.supplyAsync(schemaProvider::getSchema);
Review Comment:
Probably yes
--
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]