Skip to content

Commit

Permalink
Merge branch 'current' into add-data-extraction-glossary
Browse files Browse the repository at this point in the history
  • Loading branch information
KiraFuruichi authored Aug 1, 2022
2 parents 3c092c0 + d74c7f5 commit f120c3a
Show file tree
Hide file tree
Showing 10 changed files with 735 additions and 0 deletions.
9 changes: 9 additions & 0 deletions website/dbt-versions.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
exports.versions = [
{
version: "1.3",
EOLDate: "2023-10-07", // TODO estimated for now
isPrerelease: true,
},
{
version: "1.2",
EOLDate: "2023-07-26",
Expand All @@ -22,6 +27,10 @@ exports.versions = [
]

exports.versionedPages = [
{
"page": "docs/building-a-dbt-project/building-models/python-models",
"firstVersion": "1.3",
},
{
"page": "reference/dbt-jinja-functions/set",
"firstVersion": "1.2",
Expand Down
8 changes: 8 additions & 0 deletions website/docs/docs/building-a-dbt-project/building-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ If you're new to dbt, we recommend that you check out our [Getting Started guide

:::

<VersionBlock firstVersion="1.3">

In v1.3, dbt Core is adding support for **Python models**.

dbt's Python capabilities are an extension of its capabilities with SQL models, which are introduced in the discussion and examples below. If you're new to dbt, we recommend that you read this page first, before reading: ["Python Models"](python-models)

</VersionBlock>

A model is a `select` statement. Models are defined in `.sql` files (typically in your `models` directory):
- Each `.sql` file contains one model / `select` statement
- The name of the file is used as the model name
Expand Down
Loading

0 comments on commit f120c3a

Please sign in to comment.