Package sqlline

Class PlannerDebuggerCommandHandler

java.lang.Object
sqlline.AbstractCommandHandler
sqlline.PlannerDebuggerCommandHandler
All Implemented Interfaces:
sqlline.CommandHandler

@API(EXPERIMENTAL) public class PlannerDebuggerCommandHandler extends sqlline.AbstractCommandHandler
Add a sqlline command that will launch the cascades planner debugger in side sqlline. This new command shows in the general list of commands when you do '!help' on the `sqlline` commandline. You trigger this command by executing '!plannerdebugger SQL` (or '!pd SQL') where SQL is the SQL you want to run under the debugger: e.g. !pd select * from databases;.
  • Field Summary

    Fields inherited from class sqlline.AbstractCommandHandler

    sqlLine
  • Constructor Summary

    Constructors
    Constructor
    Description
    PlannerDebuggerCommandHandler(sqlline.SqlLine sqlLine)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    execute(String line, sqlline.DispatchCallback dispatchCallback)
     

    Methods inherited from class sqlline.AbstractCommandHandler

    echoToFile, getHelpText, getName, getNames, getParameterCompleters, matches

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • PlannerDebuggerCommandHandler

      public PlannerDebuggerCommandHandler(sqlline.SqlLine sqlLine)
  • Method Details

    • execute

      public void execute(String line, sqlline.DispatchCallback dispatchCallback)