Skip to content

Commit

Permalink
Merge pull request #2580 from dbt-labs/feature/clarify-tagging-inheri…
Browse files Browse the repository at this point in the history
…tance-example

Clarify tagging inheritance example
  • Loading branch information
deanna-minnick authored Dec 16, 2022
2 parents 8421e85 + cfdf5df commit a6b925b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions website/docs/reference/resource-configs/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ sources:
tables:
- name: table_name
tags: [<string>]
tags: ['table_level']
columns:
- name: column_name
Expand All @@ -213,9 +213,10 @@ sources:

</File>

In the example above, the `unique` test would be selected by any of the three tags:
In the example above, the `unique` test would be selected by any of these four tags:
```bash
$ dbt test --select tag:top_level
$ dbt test --select tag:table_level
$ dbt test --select tag:column_level
$ dbt test --select tag:test_level
```

0 comments on commit a6b925b

Please sign in to comment.