Package

org.apache.spark.sql.execution

command

Permalink

package command

Visibility
  1. Public
  2. All

Type Members

  1. abstract class TiCommand extends LogicalPlan with RunnableCommand

    Permalink

    TiCommand is used to inherit from org.apache.spark.sql.execution.command.RunnableCommand

    TiCommand is used to inherit from org.apache.spark.sql.execution.command.RunnableCommand

    Because we are unable to extend from a case class implementing RunnableCommand, we will have to extend TiCommand from its abstract class directly.

  2. case class TiCreateTableLikeCommand(tiContext: TiContext, delegate: CreateTableLikeCommand) extends LogicalPlan with RunnableCommand with Product with Serializable

    Permalink
  3. case class TiDescribeTablesCommand(tiContext: TiContext, delegate: DescribeTableCommand) extends TiCommand with Product with Serializable

    Permalink

    CHECK Spark org.apache.spark.sql.execution.command.DescribeTableCommand

    CHECK Spark org.apache.spark.sql.execution.command.DescribeTableCommand

    tiContext

    tiContext which contains our catalog info

    delegate

    original DescribeTableCommand

  4. case class TiSetDatabaseCommand(tiContext: TiContext, delegate: SetDatabaseCommand) extends TiCommand with Product with Serializable

    Permalink

    CHECK Spark org.apache.spark.sql.execution.command.SetDatabaseCommand

    CHECK Spark org.apache.spark.sql.execution.command.SetDatabaseCommand

    tiContext

    tiContext which contains our catalog info

    delegate

    original SetDatabaseCommand

  5. case class TiShowColumnsCommand(tiContext: TiContext, delegate: ShowColumnsCommand) extends TiCommand with Product with Serializable

    Permalink

    CHECK Spark org.apache.spark.sql.execution.command.ShowColumnsCommand

    CHECK Spark org.apache.spark.sql.execution.command.ShowColumnsCommand

    tiContext

    tiContext which contains our catalog info

    delegate

    original ShowColumnsCommand

  6. case class TiShowDatabasesCommand(tiContext: TiContext, delegate: ShowDatabasesCommand) extends TiCommand with Product with Serializable

    Permalink

    CHECK Spark org.apache.spark.sql.execution.command.ShowDatabasesCommand

    CHECK Spark org.apache.spark.sql.execution.command.ShowDatabasesCommand

    tiContext

    tiContext which contains our catalog info

    delegate

    original ShowDatabasesCommand

  7. case class TiShowTablesCommand(tiContext: TiContext, delegate: ShowTablesCommand) extends TiCommand with Product with Serializable

    Permalink

    CHECK Spark org.apache.spark.sql.execution.command.ShowTablesCommand

    CHECK Spark org.apache.spark.sql.execution.command.ShowTablesCommand

    tiContext

    tiContext which contains our catalog info

    delegate

    original ShowTablesCommand

Ungrouped