Skip to content

Commit

Permalink
Actually fix row_id
Browse files Browse the repository at this point in the history
  • Loading branch information
wrridgeway committed Jan 21, 2025
1 parent 7ca4c70 commit 1f29902
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dbt/models/open_data/open_data.vw_permit.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
-- Some columns from the feeder view may not be present in this view.

SELECT
CONCAT(pin, permit_number) AS row_id,
CONCAT(
pin, COALESCE(permit_number, '')
) AS row_id,
pin,
permit_number,
local_permit_number,
Expand Down

0 comments on commit 1f29902

Please sign in to comment.