Packages

p

io.delta.tables

execution

package execution

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class CreateTableOptions(ifNotExists: Boolean) extends DeltaTableBuilderOptions with Product with Serializable

    Specify that the builder is to create a Delta table.

    Specify that the builder is to create a Delta table.

    ifNotExists

    boolean whether to ignore if the table already exists.

  2. trait DeltaConvertBase extends AnyRef
  3. sealed trait DeltaTableBuilderOptions extends AnyRef

    DeltaTableBuilder option to indicate whether it's to create / replace the table.

  4. trait DeltaTableOperations extends AnalysisHelper

    Interface to provide the actual implementations of DeltaTable operations.

  5. case class ReplaceTableOptions(orCreate: Boolean) extends DeltaTableBuilderOptions with Product with Serializable

    Specify that the builder is to replace a Delta table.

    Specify that the builder is to replace a Delta table.

    orCreate

    boolean whether to create the table if the table doesn't exist.

  6. case class VacuumTableCommand(child: LogicalPlan, horizonHours: Option[Double], inventoryTable: Option[LogicalPlan], inventoryQuery: Option[String], dryRun: Boolean, vacuumType: Option[String]) extends LogicalPlan with RunnableCommand with UnaryNode with DeltaCommand with Product with Serializable

    The vacuum command implementation for Spark SQL.

    The vacuum command implementation for Spark SQL. Example SQL:

    VACUUM ('/path/to/dir' | delta.`/path/to/dir`)
    [USING INVENTORY (delta.`/path/to/dir`| ( sub_query ))]
    [RETAIN number HOURS] [DRY RUN];

Value Members

  1. object DeltaConvert extends DeltaConvertBase
  2. object VacuumTableCommand extends Serializable

Ungrouped