Skip to content

Commit

Permalink
fix: Add missing paren in star macro blog
Browse files Browse the repository at this point in the history
  • Loading branch information
kiyanmair committed Nov 1, 2024
1 parent b7d1f96 commit 08b1c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/blog/2022-07-13-star-sql-love-letter.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ So what does this mean for the example from above? Instead of writing out all 55

```sql
select
{{ dbt_utils.star(from=ref('table_a'), except=['column_56'] }}
{{ dbt_utils.star(from=ref('table_a'), except=['column_56']) }}
from {{ ref('table_a') }}
```

Expand Down

0 comments on commit 08b1c31

Please sign in to comment.