github dataform-co/dataform 1.14.0
1.14.0: Snowflake feature support: Transient tables and Cluster by

latest releases: 3.0.2, 3.0.1, 3.0.0...
3 years ago

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

Don't miss a new dataform release

NewReleases is sending notifications on new releases.