Skip to content

Commit a71c486

Browse files
authored
changed geom column name in priority waterbodies (#2100)
1 parent 8689a72 commit a71c486

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

products/green_fast_track/models/_sources.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ sources:
496496
- name: waterbody
497497
tests:
498498
- not_null
499-
- name: wkb_geometry
499+
- name: geom
500500
tests:
501501
- not_null
502502
tests:
@@ -513,7 +513,7 @@ sources:
513513
- name: waterbody
514514
tests:
515515
- not_null
516-
- name: wkb_geometry
516+
- name: geom
517517
tests:
518518
- not_null
519519

@@ -525,7 +525,7 @@ sources:
525525
- name: waterbody
526526
tests:
527527
- not_null
528-
- name: wkb_geometry
528+
- name: geom
529529
tests:
530530
- not_null
531531

products/green_fast_track/models/staging/stg__nysdec_priority_estuaries.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
WITH clipped_to_nyc AS (
2-
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_estuaries"), left_by="wkb_geometry") }}
2+
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_estuaries")) }}
33
)
44

55
SELECT

products/green_fast_track/models/staging/stg__nysdec_priority_lakes.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
WITH clipped_to_nyc AS (
2-
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_lakes"), left_by="wkb_geometry") }}
2+
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_lakes")) }}
33
)
44

55
SELECT

products/green_fast_track/models/staging/stg__nysdec_priority_streams.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
WITH clipped_to_nyc AS (
2-
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_streams"), left_by="wkb_geometry") }}
2+
{{ clip_to_geom(left=source("recipe_sources", "nysdec_priority_streams")) }}
33
)
44

55
SELECT

0 commit comments

Comments
 (0)