mirror of
https://gitlab.com/cief-data/dbt_cloud.git
synced 2026-08-19 04:14:00 +00:00
6 lines
375 B
SQL
6 lines
375 B
SQL
-- Macro to call EUDF stored in snowflake
|
|
-- id, created_datetime, updated_datetime, reference, address_1, address_2, postcode, district, state, country
|
|
{%- macro address_to_coordinates(column1, column2, column3, column4, column5) -%}
|
|
GLOBAL_FUNCTION.EUDF.ECHO_ADDRESS_TO_COORDINATES({{column1}}, {{column2}}, {{column3}}, {{column4}}, {{column5}})
|
|
{%- endmacro -%}
|