You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ignite.apache.org by GitBox <gi...@apache.org> on 2022/08/08 13:44:48 UTC

[GitHub] [ignite-3] kgusakov commented on a diff in pull request #971: IGNITE-17348 Add quit/exit command to Ignite3 CLI sql REPL

kgusakov commented on code in PR #971:
URL: https://github.com/apache/ignite-3/pull/971#discussion_r940257330


##########
modules/cli/src/main/java/org/apache/ignite/cli/core/repl/executor/RegistryCommandExecutor.java:
##########
@@ -23,20 +23,26 @@
 import org.apache.ignite.cli.core.call.DefaultCallOutput;
 import org.apache.ignite.cli.core.call.StringCallInput;
 import org.jline.console.SystemRegistry;
+import org.jline.reader.ParsedLine;
+import org.jline.reader.Parser;
+import org.jline.reader.Parser.ParseContext;
 
 /**
  * Command executor based on {@link SystemRegistry}.
  */
 public class RegistryCommandExecutor implements Call<StringCallInput, Object> {
     private final SystemRegistry systemRegistry;
+    private final Parser parser;

Review Comment:
   ```suggestion
   
       private final Parser parser;
   ```



-- 
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-unsubscribe@ignite.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org