Incremental Table
Class: IncrementalTable
Section titled “Class: IncrementalTable”When you define an incremental table, sqlanvil builds the incremental table from scratch only for the first time. During subsequent executions, sqlanvil only inserts or merges new rows into the incremental table according to the conditions that you configure.
You can create incremental tables in the following ways. Available config options are defined in IncrementalTableConfig, and are shared across all the following ways of creating tables.
Using a SQLX file:
-- definitions/name.sqlxconfig { type: "incremental"}-- This inserts `1` the first time running, and `2` on subsequent runs.SELECT ${when(incremental(), 1, 2) }Using the Javascript API:
publish("name", { type: "incremental" }).query( ctx => `SELECT ${ctx.when(ctx.incremental(), 1, 2) }`)Note: When using the Javascript API, methods in this class can be accessed by the returned value.
This is where query comes from.
Hierarchy
Section titled “Hierarchy”-
ActionBuilder‹Table›
↳ IncrementalTable
Methods
Section titled “Methods”- assertions
- bigquery
- columns
- database
- dependencies
- description
- disabled
- hermetic
- postOps
- preOps
- protected
- query
- schema
- setDependOnDependencyAssertions
- tags
- type
- uniqueKey
Methods
Section titled “Methods”assertions
Section titled “assertions”▸ assertions(assertions: TableAssertionsConfig): this
deprecated Deprecated in favor of
IncrementalTableConfig.assertions.
Sets in-line assertions for this incremental table.
Parameters:
| Name | Type |
|---|---|
assertions | TableAssertionsConfig |
Returns: this
bigquery
Section titled “bigquery”▸ bigquery(bigquery: WarehouseOptions): this
deprecated Deprecated in favor of options available directly on
IncrementalTableConfig. For example:
publish("name", { type: "table", partitionBy: "column" }) for BigQuery, or the postgres: config block for Postgres..
Sets bigquery options for the action.
Parameters:
| Name | Type |
|---|---|
bigquery | WarehouseOptions |
Returns: this
columns
Section titled “columns”▸ columns(columns: ColumnDescriptor[]): this
deprecated Deprecated in favor of
IncrementalTableConfig.columns.
Sets the column descriptors of columns in this incremental table.
Parameters:
| Name | Type |
|---|---|
columns | ColumnDescriptor[] |
Returns: this
database
Section titled “database”▸ database(database: string): this
deprecated Deprecated in favor of
IncrementalTableConfig.project.
Sets the Sets the database in which to create the output of this action. For BigQuery targets this is the Google Cloud project ID; for Postgres/Supabase targets this is the database name in workflow_settings.yaml.
Parameters:
| Name | Type |
|---|---|
database | string |
Returns: this
dependencies
Section titled “dependencies”▸ dependencies(value: Resolvable | Resolvable[]): this
deprecated Deprecated in favor of
IncrementalTableConfig.dependencies.
Sets dependencies of the incremental table.
Parameters:
| Name | Type |
|---|---|
value | Resolvable | Resolvable[] |
Returns: this
description
Section titled “description”▸ description(description: string): this
deprecated Deprecated in favor of
IncrementalTableConfig.description.
Sets the description of this incremental table.
Parameters:
| Name | Type |
|---|---|
description | string |
Returns: this
disabled
Section titled “disabled”▸ disabled(disabled: boolean): this
deprecated Deprecated in favor of
IncrementalTableConfig.disabled.
If called with true, this action is not executed. The action can still be depended upon.
Useful for temporarily turning off broken actions.
Parameters:
| Name | Type | Default |
|---|---|---|
disabled | boolean | true |
Returns: this
hermetic
Section titled “hermetic”▸ hermetic(hermetic: boolean): void
deprecated Deprecated in favor of
IncrementalTableConfig.hermetic.
If true, this indicates that the action only depends on data from explicitly-declared dependencies. Otherwise if false, it indicates that the action depends on data from a source which has not been declared as a dependency.
Parameters:
| Name | Type |
|---|---|
hermetic | boolean |
Returns: void
postOps
Section titled “postOps”▸ postOps(posts: Contextable‹ITableContext, string | string[]›): this
Sets a post-operation to run after the query is run. This is often used for revoking temporary permissions granted to access source tables.
Example:
publish("example") .preOps(ctx => `GRANT SELECT ON TABLE ${ctx.ref("other_table")} TO sqlanvil_reader`) .query(ctx => `SELECT * FROM ${ctx.ref("other_table")}`) .postOps(ctx => `REVOKE SELECT ON TABLE ${ctx.ref("other_table")} FROM sqlanvil_reader`)Parameters:
| Name | Type |
|---|---|
posts | Contextable‹ITableContext, string | string[]› |
Returns: this
preOps
Section titled “preOps”▸ preOps(pres: Contextable‹ITableContext, string | string[]›): this
Sets a pre-operation to run before the query is run. This is often used for temporarily granting permission to access source tables.
Example:
publish("example") .preOps(ctx => `GRANT SELECT ON TABLE ${ctx.ref("other_table")} TO sqlanvil_reader`) .query(ctx => `SELECT * FROM ${ctx.ref("other_table")}`) .postOps(ctx => `REVOKE SELECT ON TABLE ${ctx.ref("other_table")} FROM sqlanvil_reader`)Parameters:
| Name | Type |
|---|---|
pres | Contextable‹ITableContext, string | string[]› |
Returns: this
protected
Section titled “protected”▸ protected(isProtected: boolean): this
deprecated Deprecated in favor of
IncrementalTableConfig.protected.
If called with true, prevents the dataset from being rebuilt from scratch.
Parameters:
| Name | Type |
|---|---|
isProtected | boolean |
Returns: this
▸ query(query: Contextable‹ITableContext, string›): this
Sets the query to generate the table from.
Parameters:
| Name | Type |
|---|---|
query | Contextable‹ITableContext, string› |
Returns: this
schema
Section titled “schema”▸ schema(schema: string): this
deprecated Deprecated in favor of
IncrementalTableConfig.dataset.
Sets the schema (BigQuery dataset / Postgres schema) in which to create the output of this action.
Parameters:
| Name | Type |
|---|---|
schema | string |
Returns: this
setDependOnDependencyAssertions
Section titled “setDependOnDependencyAssertions”▸ setDependOnDependencyAssertions(dependOnDependencyAssertions: boolean): this
deprecated Deprecated in favor of
IncrementalTableConfig.dependOnDependencyAssertions.
When called with true, assertions dependent upon any dependency will be add as dedpendency
to this action.
Parameters:
| Name | Type |
|---|---|
dependOnDependencyAssertions | boolean |
Returns: this
▸ tags(value: string | string[]): this
deprecated Deprecated in favor of
IncrementalTableConfig.tags.
Sets a list of user-defined tags applied to this action.
Parameters:
| Name | Type |
|---|---|
value | string | string[] |
Returns: this
▸ type(type: TableType): this
deprecated
Deprecated in favor of action type can being set in the configs passed to action constructor
functions, for example publish("name", { type: "incremental" }).
Parameters:
| Name | Type |
|---|---|
type | TableType |
Returns: this
uniqueKey
Section titled “uniqueKey”▸ uniqueKey(uniqueKey: string[]): void
deprecated Deprecated in favor of
IncrementalTableConfig.uniqueKey.
If set, unique key represents a set of names of columns that will act as a the unique key. To
enforce this, when updating the incremental table, sqlanvil merges rows with uniqueKey
instead of appending them.
Parameters:
| Name | Type |
|---|---|
uniqueKey | string[] |
Returns: void