Skip to content

Commit

Permalink
Correct location insert (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
burrowse authored Mar 8, 2024
1 parent 8ee3a77 commit 583fed8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion inst/sql/sql_server/cdm_version/v531/insert_location.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ cast(null as varchar) county,
p.zip zip,
p.zip location_source_value
from @synthea_schema.patients p
left join cdm_synthea_30_v54.states_map states_map on p.state=states_map.state) locations
left join @cdm_schema.states_map states_map on p.state=states_map.state) locations
;
2 changes: 1 addition & 1 deletion inst/sql/sql_server/cdm_version/v540/insert_location.sql
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ cast(null as varchar) county,
p.zip zip,
p.zip location_source_value
from @synthea_schema.patients p
left join cdm_synthea_30_v54.states_map states_map on p.state=states_map.state) locations
left join @cdm_schema.states_map states_map on p.state=states_map.state) locations
;

0 comments on commit 583fed8

Please sign in to comment.