Skip to contents

Initalize a new DeltaTableBuilder

Usage

dlt_create()

dlt_create_if_not_exists()

dlt_replace()

dlt_create_or_replace()

Value

DeltaTableBuilder

Functions

  • dlt_create(): On execute, creates a new DeltaTable if it dosen't exist, otherwise throws an exception.

  • dlt_create_if_not_exists(): On execute, creates a new DeltaTable if it dosen't exist, otherwise does nothing.

  • dlt_replace(): On execute, replaces DeltaTable if it exists, otherwise throws an exception.

  • dlt_create_or_replace(): On execute, replaces DeltaTable if it exists, otherwise creates a new DeltaTable

Note

dlt_create, since 1.0.0

dlt_create_if_not_exists, since 1.0.0

dlt_replace, since 1.0.0

dlt_create_or_replace, since 1.0.0