|
1 | 1 | {# string ------------------------------------------------- #}
|
2 | 2 |
|
3 | 3 | {%- macro type_string() -%}
|
4 |
| - {{ adapter_macro('dbt_utils.type_string') }} |
| 4 | + {{ adapter.dispatch('type_string', packages = dbt_utils._get_utils_namespaces())() }} |
5 | 5 | {%- endmacro -%}
|
6 | 6 |
|
7 | 7 | {% macro default__type_string() %}
|
|
25 | 25 | {# timestamp ------------------------------------------------- #}
|
26 | 26 |
|
27 | 27 | {%- macro type_timestamp() -%}
|
28 |
| - {{ adapter_macro('dbt_utils.type_timestamp') }} |
| 28 | + {{ adapter.dispatch('type_timestamp', packages = dbt_utils._get_utils_namespaces())() }} |
29 | 29 | {%- endmacro -%}
|
30 | 30 |
|
31 | 31 | {% macro default__type_timestamp() %}
|
|
40 | 40 | {# float ------------------------------------------------- #}
|
41 | 41 |
|
42 | 42 | {%- macro type_float() -%}
|
43 |
| - {{ adapter_macro('dbt_utils.type_float') }} |
| 43 | + {{ adapter.dispatch('type_float', packages = dbt_utils._get_utils_namespaces())() }} |
44 | 44 | {%- endmacro -%}
|
45 | 45 |
|
46 | 46 | {% macro default__type_float() %}
|
|
54 | 54 | {# numeric ------------------------------------------------ #}
|
55 | 55 |
|
56 | 56 | {%- macro type_numeric() -%}
|
57 |
| - {{ adapter_macro('dbt_utils.type_numeric') }} |
| 57 | + {{ adapter.dispatch('type_numeric', packages = dbt_utils._get_utils_namespaces())() }} |
58 | 58 | {%- endmacro -%}
|
59 | 59 |
|
60 | 60 | {% macro default__type_numeric() %}
|
|
69 | 69 | {# bigint ------------------------------------------------- #}
|
70 | 70 |
|
71 | 71 | {%- macro type_bigint() -%}
|
72 |
| - {{ adapter_macro('dbt_utils.type_bigint') }} |
| 72 | + {{ adapter.dispatch('type_bigint', packages = dbt_utils._get_utils_namespaces())() }} |
73 | 73 | {%- endmacro -%}
|
74 | 74 |
|
75 | 75 | {% macro default__type_bigint() %}
|
|
83 | 83 | {# int ------------------------------------------------- #}
|
84 | 84 |
|
85 | 85 | {%- macro type_int() -%}
|
86 |
| - {{ adapter_macro('dbt_utils.type_int') }} |
| 86 | + {{ adapter.dispatch('type_int', packages = dbt_utils._get_utils_namespaces())() }} |
87 | 87 | {%- endmacro -%}
|
88 | 88 |
|
89 | 89 | {% macro default__type_int() %}
|
|
0 commit comments