Skip to content

Commit

Permalink
Merge pull request dbt-labs#1 from mjumbewu/patch-1
Browse files Browse the repository at this point in the history
Update README with exclude parameter of union_tables
  • Loading branch information
Stacey M authored May 15, 2018
2 parents d3b443f + 2f3f2cd commit 523db98
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,11 @@ This macro implements an "outer union." The list of tables provided to this macr

Usage:
```
{{ macro union_tables(tables=[ref('table_1', 'table_2')], column_override={"some_field": "varchar(100)"}) }}
{{ macro union_tables(
tables=[ref('table_1', 'table_2')],
column_override={"some_field": "varchar(100)"},
exclude=["some_other_field"]
) }}
```
---
### Web
Expand Down

0 comments on commit 523db98

Please sign in to comment.