dbt-adapters 1.3.1__py3-none-any.whl → 1.3.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dbt-adapters might be problematic. Click here for more details.

Files changed (26) hide show
  1. dbt/adapters/__about__.py +1 -1
  2. dbt/adapters/base/impl.py +6 -2
  3. dbt/adapters/events/types.py +1 -1
  4. dbt/adapters/sql/connections.py +3 -2
  5. dbt/include/global_project/macros/adapters/apply_grants.sql +4 -4
  6. dbt/include/global_project/macros/adapters/columns.sql +5 -5
  7. dbt/include/global_project/macros/adapters/relation.sql +1 -1
  8. dbt/include/global_project/macros/adapters/show.sql +19 -15
  9. dbt/include/global_project/macros/materializations/models/clone/clone.sql +2 -2
  10. dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +1 -1
  11. dbt/include/global_project/macros/materializations/models/materialized_view.sql +2 -2
  12. dbt/include/global_project/macros/materializations/seeds/helpers.sql +1 -1
  13. dbt/include/global_project/macros/materializations/seeds/seed.sql +1 -1
  14. dbt/include/global_project/macros/materializations/snapshots/helpers.sql +1 -1
  15. dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +1 -1
  16. dbt/include/global_project/macros/relations/drop.sql +1 -1
  17. dbt/include/global_project/macros/relations/materialized_view/drop.sql +1 -1
  18. dbt/include/global_project/macros/relations/rename.sql +1 -1
  19. dbt/include/global_project/macros/relations/table/drop.sql +1 -1
  20. dbt/include/global_project/macros/relations/view/create.sql +1 -1
  21. dbt/include/global_project/macros/relations/view/drop.sql +1 -1
  22. dbt/include/global_project/macros/relations/view/replace.sql +1 -1
  23. {dbt_adapters-1.3.1.dist-info → dbt_adapters-1.3.3.dist-info}/METADATA +1 -1
  24. {dbt_adapters-1.3.1.dist-info → dbt_adapters-1.3.3.dist-info}/RECORD +26 -26
  25. {dbt_adapters-1.3.1.dist-info → dbt_adapters-1.3.3.dist-info}/WHEEL +1 -1
  26. {dbt_adapters-1.3.1.dist-info → dbt_adapters-1.3.3.dist-info}/licenses/LICENSE +0 -0
dbt/adapters/__about__.py CHANGED
@@ -1 +1 @@
1
- version = "1.3.1"
1
+ version = "1.3.3"
dbt/adapters/base/impl.py CHANGED
@@ -319,14 +319,18 @@ class BaseAdapter(metaclass=AdapterMeta):
319
319
  return conn.name
320
320
 
321
321
  @contextmanager
322
- def connection_named(self, name: str, query_header_context: Any = None) -> Iterator[None]:
322
+ def connection_named(
323
+ self, name: str, query_header_context: Any = None, should_release_connection=True
324
+ ) -> Iterator[None]:
323
325
  try:
324
326
  if self.connections.query_header is not None:
325
327
  self.connections.query_header.set(name, query_header_context)
326
328
  self.acquire_connection(name)
327
329
  yield
328
330
  finally:
329
- self.release_connection()
331
+ if should_release_connection:
332
+ self.release_connection()
333
+
330
334
  if self.connections.query_header is not None:
331
335
  self.connections.query_header.reset()
332
336
 
@@ -190,7 +190,7 @@ class SQLQueryStatus(DebugLevel):
190
190
  return "E017"
191
191
 
192
192
  def message(self) -> str:
193
- return f"SQL status: {self.status} in {self.elapsed} seconds"
193
+ return f"SQL status: {self.status} in {self.elapsed:.3f} seconds"
194
194
 
195
195
 
196
196
  class SQLCommit(DebugLevel):
@@ -88,7 +88,8 @@ class SQLConnectionManager(BaseConnectionManager):
88
88
  node_info=get_node_info(),
89
89
  )
90
90
  )
91
- pre = time.time()
91
+
92
+ pre = time.perf_counter()
92
93
 
93
94
  cursor = connection.handle.cursor()
94
95
  cursor.execute(sql, bindings)
@@ -96,7 +97,7 @@ class SQLConnectionManager(BaseConnectionManager):
96
97
  fire_event(
97
98
  SQLQueryStatus(
98
99
  status=str(self.get_response(cursor)),
99
- elapsed=round((time.time() - pre)),
100
+ elapsed=time.perf_counter() - pre,
100
101
  node_info=get_node_info(),
101
102
  )
102
103
  )
@@ -61,7 +61,7 @@
61
61
  {% endmacro %}
62
62
 
63
63
  {% macro default__get_show_grant_sql(relation) %}
64
- show grants on {{ relation }}
64
+ show grants on {{ relation.render() }}
65
65
  {% endmacro %}
66
66
 
67
67
 
@@ -70,7 +70,7 @@
70
70
  {% endmacro %}
71
71
 
72
72
  {%- macro default__get_grant_sql(relation, privilege, grantees) -%}
73
- grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}
73
+ grant {{ privilege }} on {{ relation.render() }} to {{ grantees | join(', ') }}
74
74
  {%- endmacro -%}
75
75
 
76
76
 
@@ -79,7 +79,7 @@
79
79
  {% endmacro %}
80
80
 
81
81
  {%- macro default__get_revoke_sql(relation, privilege, grantees) -%}
82
- revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}
82
+ revoke {{ privilege }} on {{ relation.render() }} from {{ grantees | join(', ') }}
83
83
  {%- endmacro -%}
84
84
 
85
85
 
@@ -147,7 +147,7 @@
147
147
  {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}
148
148
  {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}
149
149
  {% if not (needs_granting or needs_revoking) %}
150
- {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}
150
+ {{ log('On ' ~ relation.render() ~': All grants are in place, no revocation or granting needed.')}}
151
151
  {% endif %}
152
152
  {% else %}
153
153
  {#-- We don't think there's any chance of previous grants having carried over. --#}
@@ -96,10 +96,10 @@
96
96
  {%- set tmp_column = column_name + "__dbt_alter" -%}
97
97
 
98
98
  {% call statement('alter_column_type') %}
99
- alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};
100
- update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};
101
- alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;
102
- alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}
99
+ alter table {{ relation.render() }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};
100
+ update {{ relation.render() }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};
101
+ alter table {{ relation.render() }} drop column {{ adapter.quote(column_name) }} cascade;
102
+ alter table {{ relation.render() }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}
103
103
  {% endcall %}
104
104
 
105
105
  {% endmacro %}
@@ -120,7 +120,7 @@
120
120
 
121
121
  {% set sql -%}
122
122
 
123
- alter {{ relation.type }} {{ relation }}
123
+ alter {{ relation.type }} {{ relation.render() }}
124
124
 
125
125
  {% for column in add_columns %}
126
126
  add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}
@@ -38,7 +38,7 @@
38
38
 
39
39
  {% macro default__truncate_relation(relation) -%}
40
40
  {% call statement('truncate_relation') -%}
41
- truncate table {{ relation }}
41
+ truncate table {{ relation.render() }}
42
42
  {%- endcall %}
43
43
  {% endmacro %}
44
44
 
@@ -1,22 +1,26 @@
1
+ {#
2
+ We expect a syntax error if dbt show is invoked both with a --limit flag to show
3
+ and with a limit predicate embedded in its inline query. No special handling is
4
+ provided out-of-box.
5
+ #}
1
6
  {% macro get_show_sql(compiled_code, sql_header, limit) -%}
2
- {%- if sql_header -%}
7
+ {%- if sql_header is not none -%}
3
8
  {{ sql_header }}
4
- {%- endif -%}
5
- {%- if limit is not none -%}
9
+ {%- endif %}
6
10
  {{ get_limit_subquery_sql(compiled_code, limit) }}
7
- {%- else -%}
8
- {{ compiled_code }}
9
- {%- endif -%}
10
11
  {% endmacro %}
11
12
 
12
- {% macro get_limit_subquery_sql(sql, limit) %}
13
- {{ adapter.dispatch('get_limit_subquery_sql', 'dbt')(sql, limit) }}
14
- {% endmacro %}
13
+ {#
14
+ Not necessarily a true subquery anymore. Now, merely a query subordinate
15
+ to the calling macro.
16
+ #}
17
+ {%- macro get_limit_subquery_sql(sql, limit) -%}
18
+ {{ adapter.dispatch('get_limit_sql', 'dbt')(sql, limit) }}
19
+ {%- endmacro -%}
15
20
 
16
- {% macro default__get_limit_subquery_sql(sql, limit) %}
17
- select *
18
- from (
19
- {{ sql }}
20
- ) as model_limit_subq
21
- limit {{ limit }}
21
+ {% macro default__get_limit_sql(sql, limit) %}
22
+ {{ compiled_code }}
23
+ {% if limit is not none %}
24
+ limit {{ limit }}
25
+ {%- endif -%}
22
26
  {% endmacro %}
@@ -27,14 +27,14 @@
27
27
 
28
28
  {%- set target_relation = this.incorporate(type='table') -%}
29
29
  {% if existing_relation is not none and not existing_relation.is_table %}
30
- {{ log("Dropping relation " ~ existing_relation ~ " because it is of type " ~ existing_relation.type) }}
30
+ {{ log("Dropping relation " ~ existing_relation.render() ~ " because it is of type " ~ existing_relation.type) }}
31
31
  {{ drop_relation_if_exists(existing_relation) }}
32
32
  {% endif %}
33
33
 
34
34
  -- as a general rule, data platforms that can clone tables can also do atomic 'create or replace'
35
35
  {% call statement('main') %}
36
36
  {% if target_relation and defer_relation and target_relation == defer_relation %}
37
- {{ log("Target relation and defer relation are the same, skipping clone for relation: " ~ target_relation) }}
37
+ {{ log("Target relation and defer relation are the same, skipping clone for relation: " ~ target_relation.render()) }}
38
38
  {% else %}
39
39
  {{ create_or_replace_clone(target_relation, defer_relation) }}
40
40
  {% endif %}
@@ -3,5 +3,5 @@
3
3
  {% endmacro %}
4
4
 
5
5
  {% macro default__create_or_replace_clone(this_relation, defer_relation) %}
6
- create or replace table {{ this_relation }} clone {{ defer_relation }}
6
+ create or replace table {{ this_relation.render() }} clone {{ defer_relation.render() }}
7
7
  {% endmacro %}
@@ -71,9 +71,9 @@
71
71
  {% set build_sql = get_alter_materialized_view_as_sql(target_relation, configuration_changes, sql, existing_relation, backup_relation, intermediate_relation) %}
72
72
  {% elif on_configuration_change == 'continue' %}
73
73
  {% set build_sql = '' %}
74
- {{ exceptions.warn("Configuration changes were identified and `on_configuration_change` was set to `continue` for `" ~ target_relation ~ "`") }}
74
+ {{ exceptions.warn("Configuration changes were identified and `on_configuration_change` was set to `continue` for `" ~ target_relation.render() ~ "`") }}
75
75
  {% elif on_configuration_change == 'fail' %}
76
- {{ exceptions.raise_fail_fast_error("Configuration changes were identified and `on_configuration_change` was set to `fail` for `" ~ target_relation ~ "`") }}
76
+ {{ exceptions.raise_fail_fast_error("Configuration changes were identified and `on_configuration_change` was set to `fail` for `" ~ target_relation.render() ~ "`") }}
77
77
 
78
78
  {% else %}
79
79
  -- this only happens if the user provides a value other than `apply`, 'skip', 'fail'
@@ -37,7 +37,7 @@
37
37
  {% set sql = create_csv_table(model, agate_table) %}
38
38
  {% else %}
39
39
  {{ adapter.truncate_relation(old_relation) }}
40
- {% set sql = "truncate table " ~ old_relation %}
40
+ {% set sql = "truncate table " ~ old_relation.render() %}
41
41
  {% endif %}
42
42
 
43
43
  {{ return(sql) }}
@@ -22,7 +22,7 @@
22
22
  -- build model
23
23
  {% set create_table_sql = "" %}
24
24
  {% if exists_as_view %}
25
- {{ exceptions.raise_compiler_error("Cannot seed to '{}', it is a view".format(old_relation)) }}
25
+ {{ exceptions.raise_compiler_error("Cannot seed to '{}', it is a view".format(old_relation.render())) }}
26
26
  {% elif exists_as_table %}
27
27
  {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}
28
28
  {% else %}
@@ -8,7 +8,7 @@
8
8
  {% macro default__create_columns(relation, columns) %}
9
9
  {% for column in columns %}
10
10
  {% call statement() %}
11
- alter table {{ relation }} add column "{{ column.name }}" {{ column.data_type }};
11
+ alter table {{ relation.render() }} add column "{{ column.name }}" {{ column.data_type }};
12
12
  {% endcall %}
13
13
  {% endfor %}
14
14
  {% endmacro %}
@@ -7,7 +7,7 @@
7
7
  {% macro default__snapshot_merge_sql(target, source, insert_cols) -%}
8
8
  {%- set insert_cols_csv = insert_cols | join(', ') -%}
9
9
 
10
- merge into {{ target }} as DBT_INTERNAL_DEST
10
+ merge into {{ target.render() }} as DBT_INTERNAL_DEST
11
11
  using {{ source }} as DBT_INTERNAL_SOURCE
12
12
  on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id
13
13
 
@@ -16,7 +16,7 @@
16
16
  {{ drop_materialized_view(relation) }}
17
17
 
18
18
  {%- else -%}
19
- drop {{ relation.type }} if exists {{ relation }} cascade
19
+ drop {{ relation.type }} if exists {{ relation.render() }} cascade
20
20
 
21
21
  {%- endif -%}
22
22
 
@@ -10,5 +10,5 @@ actually executes the drop, and `get_drop_sql`, which returns the template.
10
10
 
11
11
 
12
12
  {% macro default__drop_materialized_view(relation) -%}
13
- drop materialized view if exists {{ relation }} cascade
13
+ drop materialized view if exists {{ relation.render() }} cascade
14
14
  {%- endmacro %}
@@ -30,6 +30,6 @@
30
30
  {% macro default__rename_relation(from_relation, to_relation) -%}
31
31
  {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}
32
32
  {% call statement('rename_relation') -%}
33
- alter table {{ from_relation }} rename to {{ target_name }}
33
+ alter table {{ from_relation.render() }} rename to {{ target_name }}
34
34
  {%- endcall %}
35
35
  {% endmacro %}
@@ -10,5 +10,5 @@ actually executes the drop, and `get_drop_sql`, which returns the template.
10
10
 
11
11
 
12
12
  {% macro default__drop_table(relation) -%}
13
- drop table if exists {{ relation }} cascade
13
+ drop table if exists {{ relation.render() }} cascade
14
14
  {%- endmacro %}
@@ -16,7 +16,7 @@
16
16
  {%- set sql_header = config.get('sql_header', none) -%}
17
17
 
18
18
  {{ sql_header if sql_header is not none }}
19
- create view {{ relation }}
19
+ create view {{ relation.render() }}
20
20
  {% set contract_config = config.get('contract') %}
21
21
  {% if contract_config.enforced %}
22
22
  {{ get_assert_columns_equivalent(sql) }}
@@ -10,5 +10,5 @@ actually executes the drop, and `get_drop_sql`, which returns the template.
10
10
 
11
11
 
12
12
  {% macro default__drop_view(relation) -%}
13
- drop view if exists {{ relation }} cascade
13
+ drop view if exists {{ relation.render() }} cascade
14
14
  {%- endmacro %}
@@ -61,6 +61,6 @@
61
61
  {% endmacro %}
62
62
 
63
63
  {% macro default__handle_existing_table(full_refresh, old_relation) %}
64
- {{ log("Dropping relation " ~ old_relation ~ " because it is of type " ~ old_relation.type) }}
64
+ {{ log("Dropping relation " ~ old_relation.render() ~ " because it is of type " ~ old_relation.type) }}
65
65
  {{ adapter.drop_relation(old_relation) }}
66
66
  {% endmacro %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dbt-adapters
3
- Version: 1.3.1
3
+ Version: 1.3.3
4
4
  Summary: The set of adapter protocols and base functionality that supports integration with dbt-core
5
5
  Project-URL: Homepage, https://github.com/dbt-labs/dbt-adapters
6
6
  Project-URL: Documentation, https://docs.getdbt.com
@@ -1,5 +1,5 @@
1
1
  dbt/__init__.py,sha256=iY4jdvOxcDhkdr5FiyOTZPHadKtMZDQ-qC6Fw6_EHPM,277
2
- dbt/adapters/__about__.py,sha256=oyhzj6TSqsw4so-XUNSuGbvYxITFEVPNrc2-pPJ1gLc,18
2
+ dbt/adapters/__about__.py,sha256=fsTqYPBJfBiPtA85HQlmYkU8lw1Bsz_S4ltmpXp8LxE,18
3
3
  dbt/adapters/__init__.py,sha256=3noHsg-64qI0_Pw6OR9F7l1vU2_qrJvinq8POTtuaZM,252
4
4
  dbt/adapters/cache.py,sha256=WGy4ewnz-J13LverTACBW2iFhGswrWLgm-wiBrQnMzo,20084
5
5
  dbt/adapters/capability.py,sha256=-Mbej2AL_bjQatHpFWUgsQ8z0zwnotyE9Y5DYHnX7NE,2364
@@ -13,7 +13,7 @@ dbt/adapters/base/README.md,sha256=muHQntC07Lh6L1XfVgwKhV5RltOPBLYPdQqd8_7l34c,5
13
13
  dbt/adapters/base/__init__.py,sha256=KGGGbj8jGMjAFJdQ5YHcOpApMMVZ_6Xuni1swhpkqRY,423
14
14
  dbt/adapters/base/column.py,sha256=M3iotEY5yi4xikXyXzD9oshBF9-xcJrIeQVu1sB85DI,5450
15
15
  dbt/adapters/base/connections.py,sha256=-C5dOwGgMKH8n_v6wjwOxV7chBdS0GjOGwNQCUbhhWc,16951
16
- dbt/adapters/base/impl.py,sha256=wJMep68vVx79blXXA1RYKAbIP5PCsbpW2DVnfZ3tRTY,68786
16
+ dbt/adapters/base/impl.py,sha256=Z0rdtNs-XQC_fhnfqtTLOj2-mSFIa0m-6XiVb0S8VPg,68879
17
17
  dbt/adapters/base/meta.py,sha256=MMqL2xBqdvoacNs9JcL0E38NZIhCP4RH4OD_z_jo7GQ,4644
18
18
  dbt/adapters/base/plugin.py,sha256=rm0GjNHnWM2mn0GJOjciZLwn-02xlzWCoMT9u-epwP0,1076
19
19
  dbt/adapters/base/query_headers.py,sha256=UluGd9IYCYkoMiDi5Yx_lnrCOSjWppjwRro4SIGgx8I,3496
@@ -30,7 +30,7 @@ dbt/adapters/events/adapter_types.proto,sha256=wFhPMVokFgU1KFyc4h4OKzX1I0I_d2AVB
30
30
  dbt/adapters/events/adapter_types_pb2.py,sha256=06gi23B_q_wGp2EnjGuLW09SV578IjPsyH6RhACuBFU,26480
31
31
  dbt/adapters/events/base_types.py,sha256=sTlNRl15GaRIrIDVxalf7sK08dfo3Ol1Ua2jbFO7-7c,966
32
32
  dbt/adapters/events/logging.py,sha256=1nRFswQubgUrVHL5DB9ewBtbEv1-OcIXC7mMmu3NOaM,2350
33
- dbt/adapters/events/types.py,sha256=ShqYkoOoSfNBgZIjXT2NLdSw1vbTq5ECsxt8eqm2LPs,12185
33
+ dbt/adapters/events/types.py,sha256=nW7_FgrEmWlM-HWPHrYcJ5K5QLZtfspLizyqlXrJaoE,12189
34
34
  dbt/adapters/exceptions/__init__.py,sha256=LxRkxHARMzrPegrjha5tQ8vQi1PnL_ooq1SVqm9aiZs,1268
35
35
  dbt/adapters/exceptions/alias.py,sha256=QlCd2jvatfndec1DQLMMBJ-C_7w8yAySuAFHK2ga1g8,798
36
36
  dbt/adapters/exceptions/cache.py,sha256=u720DQQKm8pyf_9loD9HGA9WgaeZAlg0sBn0sGc-rhA,2492
@@ -43,22 +43,22 @@ dbt/adapters/relation_configs/config_base.py,sha256=IK9oKf9TuOTLIiKX8ms_X-p4yxZv
43
43
  dbt/adapters/relation_configs/config_change.py,sha256=hf6fDWbZpKvZdM6z-OtY-GveipzfLRR_dsUZmYmXkdk,713
44
44
  dbt/adapters/relation_configs/config_validation.py,sha256=wlJUMwOEPhYFch-LRtEWfLNJMq8jL1tRhOUHmNX8nFw,1978
45
45
  dbt/adapters/sql/__init__.py,sha256=WLWZJfqc8pr1N1BMVe9gM-KQ4URJIeKfLqTuJBD1VN0,107
46
- dbt/adapters/sql/connections.py,sha256=MfeQw0YH3k8nu4wdkeMRukav1o0nPiEL3uifkbspRf4,6620
46
+ dbt/adapters/sql/connections.py,sha256=ASxZtpPoM_EtmD_nfG0z5F8pTO5YsWfUBV7QKqx4cec,6628
47
47
  dbt/adapters/sql/impl.py,sha256=HmH3eC-qVeCAAukjEOnUNZbH-UK32X-NL4kwb_EHzs0,10763
48
48
  dbt/include/__init__.py,sha256=qEFeq3yuf3lQKVseALmL8aPM8fpCS54B_5pry00M3hk,76
49
49
  dbt/include/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  dbt/include/global_project/__init__.py,sha256=-0HL5OkeJSrxglm1Y-UltTiBPY2BbWx8ZpTiJ7ypSvw,73
51
51
  dbt/include/global_project/dbt_project.yml,sha256=RTtOhnBpEL0gbd1GlpxuVr6eZJBPvgWfNw-F88sKQ-w,109
52
52
  dbt/include/global_project/docs/overview.md,sha256=VuObM4pcS-TvwYeAjjUbe0TBhEnxf6g30EPWrGjya_w,1824
53
- dbt/include/global_project/macros/adapters/apply_grants.sql,sha256=Vyb0VNmlgoXzE1Dh2myVjujztM8VX06t3h9wGceMEeQ,6825
54
- dbt/include/global_project/macros/adapters/columns.sql,sha256=EUze4gUUDD1pnWytOpjk3p-7EFpqeqeI0LiPf2FbUVo,5438
53
+ dbt/include/global_project/macros/adapters/apply_grants.sql,sha256=3NUJLWmNE0ZAWxc1LuIpo6-dTfLEBjX1Os5BdDb_IOQ,6861
54
+ dbt/include/global_project/macros/adapters/columns.sql,sha256=21cb0Q8A3oDbajV7oL06arDcmg-YuvWRmQ-07KeI-dk,5483
55
55
  dbt/include/global_project/macros/adapters/freshness.sql,sha256=FKi-xsBCOYjGYp103O1mVTeWKy2blb_JefyoLDF0aXI,599
56
56
  dbt/include/global_project/macros/adapters/indexes.sql,sha256=DasPn32Cm0OZyjBPBWzL4BpK9PZ3xF_Pu8Nh4NgASaw,1366
57
57
  dbt/include/global_project/macros/adapters/metadata.sql,sha256=meNIc3z4lXdh1lDb-K1utKb8VzAVuN23E6XWgMZGDhQ,3512
58
58
  dbt/include/global_project/macros/adapters/persist_docs.sql,sha256=TUazJHSaMIDlELqALLRMC2kYj5DGZ9U-6K8RbgwRXw4,1369
59
- dbt/include/global_project/macros/adapters/relation.sql,sha256=RyUZAAGCQHU6YA43_5-zApp2PcvGTgLMXg61sqhe5vc,2800
59
+ dbt/include/global_project/macros/adapters/relation.sql,sha256=18lE088vj0JZW8af2byoGLFhxYxekyXKTrX7Dj-B-E0,2809
60
60
  dbt/include/global_project/macros/adapters/schema.sql,sha256=XElo0cfvdEipI5hpulLXLBEXP_YnilG-1kRwDMqDD5I,594
61
- dbt/include/global_project/macros/adapters/show.sql,sha256=_KdykFha7eiEl0D_NFfYHGFjywccii7rvy0h-GffVr4,566
61
+ dbt/include/global_project/macros/adapters/show.sql,sha256=mFDQZxvvDzafTeh9v90ttks-VCjUUxbrw_YA02MV1Jk,785
62
62
  dbt/include/global_project/macros/adapters/timestamps.sql,sha256=V_vM-UWyKGGs7rP4DumBgZrbb-TkucIFEvMn69Zpaxg,1482
63
63
  dbt/include/global_project/macros/adapters/validate_sql.sql,sha256=IC-HEVv8Cl8nd7dic_U4hyqlrkdO6plPbH914OdM_WE,285
64
64
  dbt/include/global_project/macros/etc/datetime.sql,sha256=HwNxXw0xHHLVKFBlbbc4wqTdYe6_smku1EwWGM7G-6g,2185
@@ -72,23 +72,23 @@ dbt/include/global_project/macros/get_custom_name/get_custom_database.sql,sha256
72
72
  dbt/include/global_project/macros/get_custom_name/get_custom_schema.sql,sha256=2-ZYuDRBo2RSCKZTX7rzm2Y77DVCaHGTnHG9IKNMpvk,1731
73
73
  dbt/include/global_project/macros/materializations/configs.sql,sha256=aciTDXFQoiAU4y8nsreTQnSca18P2tjURx-LQIrzyuc,627
74
74
  dbt/include/global_project/macros/materializations/hooks.sql,sha256=IIOLRanrLtpYcWxWPaPJ7JMoyJdQJicEDni4yoE9mJI,994
75
- dbt/include/global_project/macros/materializations/models/materialized_view.sql,sha256=qReMYPA6_w_b49_w6qHiEiTGD-M-xgUc22jh04PAeIg,5011
75
+ dbt/include/global_project/macros/materializations/models/materialized_view.sql,sha256=-u0cGQrHEMBt8coXfKKPpUQJS97TX3QRafV873fqeCA,5029
76
76
  dbt/include/global_project/macros/materializations/models/table.sql,sha256=wkpW8tmsIpfU5nOKqk1rtYhLcOGokFjCvLP2qQ5SbOk,2676
77
77
  dbt/include/global_project/macros/materializations/models/view.sql,sha256=LPqM3aTsWiAalFz322aTpqKqCdl4hxN8ubcwXZIIDDw,3249
78
78
  dbt/include/global_project/macros/materializations/models/clone/can_clone_table.sql,sha256=YVq2f574IxMDuEv5rbaTvUpLLqc-jQfyOgBQJQGWcmk,187
79
- dbt/include/global_project/macros/materializations/models/clone/clone.sql,sha256=gZPp7_Kd9fminkQob6OzJ_S_RsE6PhfSyRjaSmkVEC8,2698
80
- dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql,sha256=7MQuii-8WbUZs3zXcBcNOB6dgWmfEyUDZGgyp8_-3Yk,349
79
+ dbt/include/global_project/macros/materializations/models/clone/clone.sql,sha256=X85U0zwq_OINxeZ7JDer9i3BgQZvgGM-tKTvITrQx5s,2716
80
+ dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql,sha256=qr33DwFOpRG0wGVsGvr63-MexYMNZC9xKdGOPmICp_c,367
81
81
  dbt/include/global_project/macros/materializations/models/incremental/column_helpers.sql,sha256=hslQlGKW0oW97srfugsFVRR-L6RrzRcnwr3uLhzI0X4,2577
82
82
  dbt/include/global_project/macros/materializations/models/incremental/incremental.sql,sha256=rUgR9ibjgw8ZFgbnZOKPW0Vv-G1shQ1FelPc7GWmkuA,4235
83
83
  dbt/include/global_project/macros/materializations/models/incremental/is_incremental.sql,sha256=Sm1TqOeqcCQofj3REFcA97yukPB1J_mClDd55r5GewE,478
84
84
  dbt/include/global_project/macros/materializations/models/incremental/merge.sql,sha256=Xg5-Gc9jHego-wpdfg6yEIQv7EClz6-xcJEeFXuZiwQ,5197
85
85
  dbt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql,sha256=EOgcrYhwOGVPnyaBu7kIfe8LTOYVOu-AhxMtBs8ETpQ,4927
86
86
  dbt/include/global_project/macros/materializations/models/incremental/strategies.sql,sha256=1QKXoCm47g_JAmWypjSUHU8ACmXFgaBoWUG3HPCN7wA,2251
87
- dbt/include/global_project/macros/materializations/seeds/helpers.sql,sha256=jJB1i8z4PhxQP_DTUze6xpR_PXHQ8dhJ25TNqy0GQkA,3911
88
- dbt/include/global_project/macros/materializations/seeds/seed.sql,sha256=lO-SJ3rpwE-MIZD7dAvhjXUgPya11Vmm79MLE5Xf8-U,2146
89
- dbt/include/global_project/macros/materializations/snapshots/helpers.sql,sha256=taUIQ0hybn8kIvA6lMZcdvTw8yrYJo1RhpiP8EqlRfo,4807
87
+ dbt/include/global_project/macros/materializations/seeds/helpers.sql,sha256=Y15ej-D3gm1ExIOMNT208q43gRk8d985WQBuGSooNL0,3920
88
+ dbt/include/global_project/macros/materializations/seeds/seed.sql,sha256=YSoGzVO3iIUiOKIUM9G7yApGLFH4O9bv_d4KjHo3p4Q,2155
89
+ dbt/include/global_project/macros/materializations/snapshots/helpers.sql,sha256=O0aCMTPUrFONwEamKu7AMuUP6Tp0-NegJf6aZnS1018,4816
90
90
  dbt/include/global_project/macros/materializations/snapshots/snapshot.sql,sha256=q-Uaz9B2070fpruz5HEJiCqPUJNgXl7dsM5a0_v0fkg,3680
91
- dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql,sha256=Ik3OyDqqkt0z4lrNUvMKYVmZxqAdtaN1FvtMgg0VF6g,849
91
+ dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql,sha256=Lu3Yq3fEQuOGoDY0NFfruTAuvOEF3wXuo3SF_dK7uqY,858
92
92
  dbt/include/global_project/macros/materializations/snapshots/strategies.sql,sha256=ahWDMnD-Q_fTGKSjvm5ZwvypmNC6BDVguk-LNk-nHhU,6286
93
93
  dbt/include/global_project/macros/materializations/tests/helpers.sql,sha256=rxUxDZm4EvrDbi0H_ePghE34_QLmxGEY2o_LTMc9CU0,1731
94
94
  dbt/include/global_project/macros/materializations/tests/test.sql,sha256=Rz3O_3dWHlIofG3d2CwsP2bXFimRZUIwOevyB0iz1J4,1831
@@ -98,27 +98,27 @@ dbt/include/global_project/macros/python_model/python.sql,sha256=OKy-IwnklJPXfjX
98
98
  dbt/include/global_project/macros/relations/create.sql,sha256=99LLak1bhlhRw7yiI0c_4CKPlGyzqPBeBYBNeBPSmDo,701
99
99
  dbt/include/global_project/macros/relations/create_backup.sql,sha256=jAWJSw3BUxvYrjgBs3JkRJN_VHXtk05lMWPM4n-toWs,524
100
100
  dbt/include/global_project/macros/relations/create_intermediate.sql,sha256=bgPogZqRykUrdRxo_kvoKLrJ9C2x1c_TvtUZlYwUfmQ,568
101
- dbt/include/global_project/macros/relations/drop.sql,sha256=K-EFkOfb-fWf7eZ73Y5H5Iitv4jQ1_IM8cLcDhrHRiM,1020
101
+ dbt/include/global_project/macros/relations/drop.sql,sha256=UL40SxBjHLPpIHywKYHZQswEhepH1YIPh0VJ5UPAwaU,1029
102
102
  dbt/include/global_project/macros/relations/drop_backup.sql,sha256=PTbx_bN27aqCv9HD9I7Td5rJaRrH23TXDs9aC5ei8Q8,415
103
- dbt/include/global_project/macros/relations/rename.sql,sha256=n1Ic_F6okFEzUXvVq9Fj5Q1LNK_Ld2F9FI_FO3t5yFo,1174
103
+ dbt/include/global_project/macros/relations/rename.sql,sha256=0YLUnZtov5FOtr-j7CjI4LNtXWojWGER2q1lVbJMH5c,1183
104
104
  dbt/include/global_project/macros/relations/rename_intermediate.sql,sha256=rhcK6jeo5gfQ-1rqFd2lyTT4HtAzu8Ndzbz2FzHMBhs,479
105
105
  dbt/include/global_project/macros/relations/replace.sql,sha256=9SonmERpKBkqHJCnyJmxjPnhGiKfxuysNszAMgYIGSE,2295
106
106
  dbt/include/global_project/macros/relations/schema.sql,sha256=kOQeEZQwycGGtAoq_KM6EyvEhquFk8jnx81nT31s58M,318
107
107
  dbt/include/global_project/macros/relations/column/columns_spec_ddl.sql,sha256=ukW4iLuAXYfsrnlfeY26cFMMFxATcNV8hlp9valOx8U,3676
108
108
  dbt/include/global_project/macros/relations/materialized_view/alter.sql,sha256=pZcZa1xfcZZpVVSvvJ3YR0zn6noIKBfkTSbrqKohAcU,1806
109
109
  dbt/include/global_project/macros/relations/materialized_view/create.sql,sha256=C8BpyEhxETU3N46I4WNoCwB0fTb3aOhJj6EfTkNoTd0,400
110
- dbt/include/global_project/macros/relations/materialized_view/drop.sql,sha256=tYCwNlcoH8RmqkIumioO7nmhWWAVcwDIfly5Z7PGh3g,540
110
+ dbt/include/global_project/macros/relations/materialized_view/drop.sql,sha256=tNApIdMA2lAFfj02lNJJ5Oo7KXwc7qzOSFdm_jbXy-o,549
111
111
  dbt/include/global_project/macros/relations/materialized_view/refresh.sql,sha256=tTHxhzHp8mLziJgzTm7nkooC5-fAlsClOf_9-kMR794,380
112
112
  dbt/include/global_project/macros/relations/materialized_view/rename.sql,sha256=E1IQoaocaV2bt-vAYwBwAevSRaSsRisCZBY-l9dk_-Y,400
113
113
  dbt/include/global_project/macros/relations/materialized_view/replace.sql,sha256=WxbFchYzHVulEhdPa0crFoID3GR17Hw_mFdcyGKs7f0,389
114
114
  dbt/include/global_project/macros/relations/table/create.sql,sha256=-IKYB4GC1_YmGIiJ-AKUkfvq8UCvd5Exe91ojt0r41o,2140
115
- dbt/include/global_project/macros/relations/table/drop.sql,sha256=SvXZX3OLNB8oGYmfZ83eHsIWiOLyyuS9Po6Dr6g4oa8,492
115
+ dbt/include/global_project/macros/relations/table/drop.sql,sha256=E-6dxRC5_z52mvVTJRcnhih2YduKK-wouIwEvu1S8-E,501
116
116
  dbt/include/global_project/macros/relations/table/rename.sql,sha256=GMmz83Sius6Y3fPdlnjMYXrVRDP8INO6tLAn3vfgzYI,352
117
117
  dbt/include/global_project/macros/relations/table/replace.sql,sha256=xlTB2pI_fEkAPJdmbrirSrnzvFYTPtz9ROMCMxANFCo,341
118
- dbt/include/global_project/macros/relations/view/create.sql,sha256=FkLYXnCPj2HLCbtN47KR45L6hFxqPiBLcSPCfs0v2YU,839
119
- dbt/include/global_project/macros/relations/view/drop.sql,sha256=WszUTZrkd93_OCEha4OuRWyCucqxGRTm07Zvn25RHXs,488
118
+ dbt/include/global_project/macros/relations/view/create.sql,sha256=VXIsJWo4OZ_8kpoey08wGIWPUYaw2utQVChOGeMt7Lk,848
119
+ dbt/include/global_project/macros/relations/view/drop.sql,sha256=iFjhEwzip00TGd8h6T5UsXo4dK440EvgdKwR_j4XX78,497
120
120
  dbt/include/global_project/macros/relations/view/rename.sql,sha256=P4hpxlrR0wiBTZFJ8N3GyUUbqgKgMfgzUUbIWw8fui0,348
121
- dbt/include/global_project/macros/relations/view/replace.sql,sha256=5_Lky7KUixyYOOOahooD0VnmHOiOVqmxrI0ihwRjX08,2584
121
+ dbt/include/global_project/macros/relations/view/replace.sql,sha256=cLqNkmTxAxsJS8g-dj4K6IikpjDGKlyCECA3nerPMzg,2593
122
122
  dbt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql,sha256=lV-dTZmQQSl3YePl3fWqUF1Ntw5bYEzuNtJFby1JrMc,3873
123
123
  dbt/include/global_project/macros/utils/any_value.sql,sha256=leK-fCUhDNt6MFkGofafYjv-0LtL0fkb3sJXe-aIorU,213
124
124
  dbt/include/global_project/macros/utils/array_append.sql,sha256=XsC-kchlWxVwc-_1CoBs1RkGYt8qsOAVbq5JlsV2WIc,357
@@ -149,7 +149,7 @@ dbt/include/global_project/macros/utils/right.sql,sha256=EwNG98CAFIwNDmarwopf7Rk
149
149
  dbt/include/global_project/macros/utils/safe_cast.sql,sha256=1mswwkDACmIi1I99JKb_-vq3kjMe4HhMRV70mW8Bt4Y,298
150
150
  dbt/include/global_project/macros/utils/split_part.sql,sha256=fXEIS0oIiYR7-4lYbb0QbZdG-q2TpV63AFd1ky4I5UM,714
151
151
  dbt/include/global_project/tests/generic/builtin.sql,sha256=p94xdyPwb2TlxgLBqCfrcRfJ1QNgsjPvBm8f0Q5eqZM,1022
152
- dbt_adapters-1.3.1.dist-info/METADATA,sha256=9TgPGVx-sPP7No5TZ1db6lXcOvhi6u5JTVXerxjOW6M,2539
153
- dbt_adapters-1.3.1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
154
- dbt_adapters-1.3.1.dist-info/licenses/LICENSE,sha256=9yjigiJhWcCZvQjdagGKDwrRph58QWc5P2bVSQwXo6s,11344
155
- dbt_adapters-1.3.1.dist-info/RECORD,,
152
+ dbt_adapters-1.3.3.dist-info/METADATA,sha256=2ie0XNbrgtb0_XHZ5TjI02hS7fXMsqY4mi6-se8rd9U,2539
153
+ dbt_adapters-1.3.3.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
154
+ dbt_adapters-1.3.3.dist-info/licenses/LICENSE,sha256=9yjigiJhWcCZvQjdagGKDwrRph58QWc5P2bVSQwXo6s,11344
155
+ dbt_adapters-1.3.3.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.2
2
+ Generator: hatchling 1.25.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any