Skip to content

1.14.0: Snowflake feature support: Transient tables and Cluster by

Compare
Choose a tag to compare
@lewish lewish released this 20 Oct 16:55
e973496

Adds support for transient tables and cluster by expressions as part of the table configuration.

Transient tables

Only supported for actions of type table.

config {
  type: "table",
  snowflake: {
    transient: true
  }
}

select 1 as test

Cluster by example

Supported for actions of type table and incremental.

config {
  type: "table",
  snowflake: {
    clusterBy: ["test"]
  }
}

select 1 as test