package execution
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
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.
- trait DeltaConvertBase extends AnyRef
-
sealed
trait
DeltaTableBuilderOptions extends AnyRef
DeltaTableBuilder option to indicate whether it's to create / replace the table.
-
trait
DeltaTableOperations extends AnalysisHelper
Interface to provide the actual implementations of DeltaTable operations.
-
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.
-
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
vacuumcommand implementation for Spark SQL.The
vacuumcommand 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
- object DeltaConvert extends DeltaConvertBase
- object VacuumTableCommand extends Serializable