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