Skip to content

Commit

Permalink
Remove redundant coalesce
Browse files Browse the repository at this point in the history
  • Loading branch information
wagnerlmichael committed Jan 8, 2025
1 parent 95e88cb commit c934b96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/models/default/default.vw_pin_sale.sql
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ mydec_sales AS (
AS mydec_line_9_new_construction,
COALESCE(line_9_other_change = 1, FALSE)
AS mydec_line_9_other_change,
COALESCE(line_9_other_change_description, NULL)
line_9_other_change_description
AS mydec_line_9_other_change_description,
COALESCE(line_9_date_of_significant_change, NULL)
line_9_date_of_significant_change
AS mydec_line_9_date_of_significant_change,
COALESCE(line_10a = 1, FALSE)
AS mydec_is_installment_contract_fulfilled,
Expand Down

0 comments on commit c934b96

Please sign in to comment.