Skip to content

Commit

Permalink
Merge branch 'current' into title-change
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored May 7, 2023
2 parents 85c0cf4 + 4bf2f4a commit d2bec11
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 0 additions & 6 deletions website/docs/faqs/Core/install-python-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ id: install-python-compatibility

The latest version of `dbt-core` is compatible with Python versions 3.7, 3.8, 3.9, 3.10, and 3.11.

:::info

Full support of Python 3.11 across adapters is a work in progress since adapter plugins have additional third-party dependencies. As of January 2023, dbt-snowflake does not yet support Python 3.11 (relevant issue in snowflake-connector-python).

:::

</VersionBlock>

<VersionBlock firstVersion="1.1" lastVersion="1.3">
Expand Down
2 changes: 1 addition & 1 deletion website/docs/reference/global-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ config:

### Failing fast

Supply the `-x` or `--fail-fast` flag to `dbt run` to make dbt exit immediately if a single resource fails to build. If other models are in-progress when the first model fails, then dbt will terminate the connections for these still-running models.
Supply the `-x` or `--fail-fast` flag to `dbt run`, `dbt test`, or `dbt build` to make dbt exit immediately if a single resource fails to build. If other models are in-progress when the first model fails, dbt terminates the connections for these models that are still running.

For example, you can select four models to run, but if a failure occurs in the first model, the failure will prevent other models from running:

Expand Down
3 changes: 2 additions & 1 deletion website/docs/reference/node-selection/exclude.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: "Exclude"
title: "Exclude models from your run"
sidebar_label: "Exclude"
---

### Excluding models
Expand Down
4 changes: 4 additions & 0 deletions website/docs/reference/resource-configs/trino-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,3 +365,7 @@ models:
```
</File>
## Model contracts
The `dbt-trino` adapter supports [model contracts](/docs/collaborate/govern/model-contracts). Currently, only [constraints](/reference/resource-properties/constraints) with `type` as `not_null` are supported.
Before using `not_null` constraints in your model, make sure the underlying connector supports `not null`, to avoid running into errors.

0 comments on commit d2bec11

Please sign in to comment.