dbt-adapters 1.13.2__tar.gz → 1.14.0__tar.gz
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.
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/PKG-INFO +4 -4
- dbt_adapters-1.14.0/dbt/adapters/__about__.py +1 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/impl.py +6 -1
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/merge.sql +7 -5
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/snapshots/helpers.sql +8 -3
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +4 -2
- dbt_adapters-1.14.0/dbt/include/global_project/macros/utils/equals.sql +14 -0
- dbt_adapters-1.14.0/hatch.toml +53 -0
- dbt_adapters-1.14.0/pyproject.toml +58 -0
- dbt_adapters-1.13.2/dbt/__init__.py +0 -6
- dbt_adapters-1.13.2/dbt/adapters/__about__.py +0 -1
- dbt_adapters-1.13.2/pyproject.toml +0 -112
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/.gitignore +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/LICENSE +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/README.md +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/README.md +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/column.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/connections.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/meta.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/plugin.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/query_headers.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/base/relation.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/cache.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/capability.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/clients/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/clients/jinja.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/contracts/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/contracts/connection.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/contracts/macros.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/contracts/relation.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/README.md +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/adapter_types.proto +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/adapter_types_pb2.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/base_types.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/logging.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/events/types.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/alias.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/cache.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/compilation.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/connection.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/exceptions/database.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/factory.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/protocol.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/py.typed +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/cursor.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/description.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/execute.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/fetchall.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/fetchmany.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/fetchone.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/cursor/rowcount.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/record/handle.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/reference_keys.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/README.md +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/config_base.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/config_change.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/config_validation.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/sql/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/sql/connections.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/sql/impl.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/utils.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/__init__.py +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/dbt_project.yml +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/docs/overview.md +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/apply_grants.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/columns.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/freshness.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/indexes.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/metadata.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/persist_docs.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/relation.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/schema.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/show.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/timestamps.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/validate_sql.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/etc/datetime.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/etc/statement.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/generic_test_sql/accepted_values.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/generic_test_sql/not_null.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/generic_test_sql/relationships.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/generic_test_sql/unique.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/get_custom_name/get_custom_alias.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/get_custom_name/get_custom_database.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/get_custom_name/get_custom_schema.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/configs.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/hooks.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/clone/can_clone_table.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/clone/clone.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/column_helpers.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/incremental.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/is_incremental.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/incremental/strategies.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/materialized_view.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/table.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/models/view.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/seeds/helpers.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/seeds/seed.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/snapshots/strategies.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/tests/helpers.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/tests/test.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/tests/unit.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/materializations/tests/where_subquery.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/python_model/python.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/column/columns_spec_ddl.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/create.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/create_backup.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/create_intermediate.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/drop.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/drop_backup.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/alter.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/create.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/drop.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/refresh.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/rename.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/materialized_view/replace.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/rename.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/rename_intermediate.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/replace.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/schema.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/table/create.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/table/drop.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/table/rename.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/table/replace.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/view/create.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/view/drop.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/view/rename.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/view/replace.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/any_value.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/array_append.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/array_concat.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/array_construct.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/bool_or.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/cast.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/cast_bool_to_text.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/concat.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/data_types.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date_spine.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date_trunc.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/dateadd.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/datediff.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/escape_single_quotes.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/except.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/generate_series.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/hash.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/intersect.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/last_day.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/length.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/listagg.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/literal.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/position.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/replace.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/right.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/safe_cast.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/split_part.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/tests/generic/builtin.sql +0 -0
- {dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/py.typed +0 -0
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dbt-adapters
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.14.0
|
|
4
4
|
Summary: The set of adapter protocols and base functionality that supports integration with dbt-core
|
|
5
|
-
Project-URL: Homepage, https://github.com/dbt-labs/dbt-adapters
|
|
5
|
+
Project-URL: Homepage, https://github.com/dbt-labs/dbt-adapters/tree/main/dbt-adapters
|
|
6
6
|
Project-URL: Documentation, https://docs.getdbt.com
|
|
7
|
-
Project-URL: Repository, https://github.com/dbt-labs/dbt-adapters.git
|
|
7
|
+
Project-URL: Repository, https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-adapters
|
|
8
8
|
Project-URL: Issues, https://github.com/dbt-labs/dbt-adapters/issues
|
|
9
|
-
Project-URL: Changelog, https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md
|
|
9
|
+
Project-URL: Changelog, https://github.com/dbt-labs/dbt-adapters/blob/main/dbt-adapters/CHANGELOG.md
|
|
10
10
|
Author-email: dbt Labs <info@dbtlabs.com>
|
|
11
11
|
Maintainer-email: dbt Labs <info@dbtlabs.com>
|
|
12
12
|
License-File: LICENSE
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "1.14.0"
|
|
@@ -104,7 +104,12 @@ DEFAULT_BASE_BEHAVIOR_FLAGS = [
|
|
|
104
104
|
"name": "require_batched_execution_for_custom_microbatch_strategy",
|
|
105
105
|
"default": False,
|
|
106
106
|
"docs_url": "https://docs.getdbt.com/docs/build/incremental-microbatch",
|
|
107
|
-
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"name": "enable_truthy_nulls_equals_macro",
|
|
110
|
+
"default": False,
|
|
111
|
+
"docs_url": "",
|
|
112
|
+
},
|
|
108
113
|
]
|
|
109
114
|
|
|
110
115
|
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
{% do predicates.append(this_key_match) %}
|
|
22
22
|
{% endfor %}
|
|
23
23
|
{% else %}
|
|
24
|
-
{% set
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
{% set source_unique_key = ("DBT_INTERNAL_SOURCE." ~ unique_key) | trim %}
|
|
25
|
+
{% set target_unique_key = ("DBT_INTERNAL_DEST." ~ unique_key) | trim %}
|
|
26
|
+
{% set unique_key_match = equals(source_unique_key, target_unique_key) | trim %}
|
|
27
27
|
{% do predicates.append(unique_key_match) %}
|
|
28
28
|
{% endif %}
|
|
29
29
|
{% else %}
|
|
@@ -62,11 +62,13 @@
|
|
|
62
62
|
|
|
63
63
|
{% if unique_key %}
|
|
64
64
|
{% if unique_key is sequence and unique_key is not string %}
|
|
65
|
-
delete from {{target }}
|
|
65
|
+
delete from {{ target }}
|
|
66
66
|
using {{ source }}
|
|
67
67
|
where (
|
|
68
68
|
{% for key in unique_key %}
|
|
69
|
-
|
|
69
|
+
{% set source_unique_key = (source ~ "." ~ key) | trim %}
|
|
70
|
+
{% set target_unique_key = (target ~ "." ~ key) | trim %}
|
|
71
|
+
{{ equals(source_unique_key, target_unique_key) }}
|
|
70
72
|
{{ "and " if not loop.last}}
|
|
71
73
|
{% endfor %}
|
|
72
74
|
{% if incremental_predicates %}
|
|
@@ -55,8 +55,11 @@
|
|
|
55
55
|
from {{ target_relation }}
|
|
56
56
|
where
|
|
57
57
|
{% if config.get('dbt_valid_to_current') %}
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
{% set source_unique_key = columns.dbt_valid_to | trim %}
|
|
59
|
+
{% set target_unique_key = config.get('dbt_valid_to_current') | trim %}
|
|
60
|
+
|
|
61
|
+
{# The exact equals semantics between NULL values depends on the current behavior flag set. Also, update records if the source field is null #}
|
|
62
|
+
( {{ equals(source_unique_key, target_unique_key) }} or {{ source_unique_key }} is null )
|
|
60
63
|
{% else %}
|
|
61
64
|
{{ columns.dbt_valid_to }} is null
|
|
62
65
|
{% endif %}
|
|
@@ -279,7 +282,9 @@
|
|
|
279
282
|
{% macro unique_key_join_on(unique_key, identifier, from_identifier) %}
|
|
280
283
|
{% if unique_key | is_list %}
|
|
281
284
|
{% for key in unique_key %}
|
|
282
|
-
|
|
285
|
+
{% set source_unique_key = (identifier ~ ".dbt_unique_key_" ~ loop.index) | trim %}
|
|
286
|
+
{% set target_unique_key = (from_identifier ~ ".dbt_unique_key_" ~ loop.index) | trim %}
|
|
287
|
+
{{ equals(source_unique_key, target_unique_key) }}
|
|
283
288
|
{%- if not loop.last %} and {%- endif %}
|
|
284
289
|
{% endfor %}
|
|
285
290
|
{% else %}
|
|
@@ -15,8 +15,10 @@
|
|
|
15
15
|
|
|
16
16
|
when matched
|
|
17
17
|
{% if config.get("dbt_valid_to_current") %}
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
{% set source_unique_key = ("DBT_INTERNAL_DEST." ~ columns.dbt_valid_to) | trim %}
|
|
19
|
+
{% set target_unique_key = config.get('dbt_valid_to_current') | trim %}
|
|
20
|
+
and ({{ equals(source_unique_key, target_unique_key) }} or {{ source_unique_key }} is null)
|
|
21
|
+
|
|
20
22
|
{% else %}
|
|
21
23
|
and DBT_INTERNAL_DEST.{{ columns.dbt_valid_to }} is null
|
|
22
24
|
{% endif %}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{% macro equals(expr1, expr2) %}
|
|
2
|
+
{{ return(adapter.dispatch('equals', 'dbt') (expr1, expr2)) }}
|
|
3
|
+
{%- endmacro %}
|
|
4
|
+
|
|
5
|
+
{% macro default__equals(expr1, expr2) -%}
|
|
6
|
+
{%- if adapter.behavior.enable_truthy_nulls_equals_macro.no_warn %}
|
|
7
|
+
case when (({{ expr1 }} = {{ expr2 }}) or ({{ expr1 }} is null and {{ expr2 }} is null))
|
|
8
|
+
then 0
|
|
9
|
+
else 1
|
|
10
|
+
end = 0
|
|
11
|
+
{%- else -%}
|
|
12
|
+
({{ expr1 }} = {{ expr2 }})
|
|
13
|
+
{%- endif %}
|
|
14
|
+
{% endmacro %}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
[version]
|
|
2
|
+
path = "src/dbt/adapters/__about__.py"
|
|
3
|
+
|
|
4
|
+
[build.targets.sdist]
|
|
5
|
+
packages = ["src/dbt/adapters", "src/dbt/include"]
|
|
6
|
+
sources = ["src"]
|
|
7
|
+
|
|
8
|
+
[build.targets.wheel]
|
|
9
|
+
packages = ["src/dbt/adapters", "src/dbt/include"]
|
|
10
|
+
sources = ["src"]
|
|
11
|
+
|
|
12
|
+
[envs.default]
|
|
13
|
+
dependencies = [
|
|
14
|
+
"dbt_common @ git+https://github.com/dbt-labs/dbt-common.git",
|
|
15
|
+
'pre-commit==3.7.0',
|
|
16
|
+
"pytest",
|
|
17
|
+
"pytest-dotenv",
|
|
18
|
+
"pytest-xdist",
|
|
19
|
+
]
|
|
20
|
+
[envs.default.scripts]
|
|
21
|
+
setup = "pre-commit install"
|
|
22
|
+
code-quality = "pre-commit run --all-files"
|
|
23
|
+
unit-tests = "python -m pytest {args:tests/unit}"
|
|
24
|
+
workflow-code-quality = "gh workflow run _code-quality.yml --ref $(git rev-parse --abbrev-ref HEAD) -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
25
|
+
workflow-generate-changelog = "gh workflow run _generate-changelog.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f merge=false -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
26
|
+
workflow-publish-pypi = "gh workflow run _publish-pypi.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f deploy-to=test -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
27
|
+
workflow-unit-tests = "gh workflow run _unit-tests.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
28
|
+
workflow-verify-build = "gh workflow run _verify-build.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
29
|
+
workflow-publish = "gh workflow run publish.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD) -f deploy-to=test -f pypi-internal=false -f pypi-public=true"
|
|
30
|
+
|
|
31
|
+
[envs.build]
|
|
32
|
+
detached = true
|
|
33
|
+
dependencies = [
|
|
34
|
+
"wheel",
|
|
35
|
+
"twine",
|
|
36
|
+
"check-wheel-contents",
|
|
37
|
+
]
|
|
38
|
+
[envs.build.scripts]
|
|
39
|
+
check-all = [
|
|
40
|
+
"- check-wheel",
|
|
41
|
+
"- check-sdist",
|
|
42
|
+
]
|
|
43
|
+
check-wheel = [
|
|
44
|
+
"twine check dist/*",
|
|
45
|
+
"find ./dist/dbt_adapters-*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
|
|
46
|
+
"pip freeze | grep dbt-adapters",
|
|
47
|
+
]
|
|
48
|
+
check-sdist = [
|
|
49
|
+
"check-wheel-contents dist/*.whl --ignore W007,W008",
|
|
50
|
+
"find ./dist/dbt_adapters-*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
|
|
51
|
+
"pip freeze | grep dbt-adapters",
|
|
52
|
+
]
|
|
53
|
+
protobuf = "protoc -I=./dbt/adapters/events --python_out=./dbt/adapters/events ./dbt/adapters/events/adapter_types.proto"
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
dynamic = ["version"]
|
|
7
|
+
name = "dbt-adapters"
|
|
8
|
+
description = "The set of adapter protocols and base functionality that supports integration with dbt-core"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
keywords = ["dbt", "adapter", "adapters", "database", "elt", "dbt-core", "dbt Core", "dbt Cloud", "dbt Labs"]
|
|
11
|
+
requires-python = ">=3.9.0"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "dbt Labs", email = "info@dbtlabs.com" },
|
|
14
|
+
]
|
|
15
|
+
maintainers = [
|
|
16
|
+
{ name = "dbt Labs", email = "info@dbtlabs.com" },
|
|
17
|
+
]
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 5 - Production/Stable",
|
|
20
|
+
"License :: OSI Approved :: Apache Software License",
|
|
21
|
+
"Operating System :: MacOS :: MacOS X",
|
|
22
|
+
"Operating System :: Microsoft :: Windows",
|
|
23
|
+
"Operating System :: POSIX :: Linux",
|
|
24
|
+
"Programming Language :: Python :: 3.9",
|
|
25
|
+
"Programming Language :: Python :: 3.10",
|
|
26
|
+
"Programming Language :: Python :: 3.11",
|
|
27
|
+
"Programming Language :: Python :: 3.12",
|
|
28
|
+
]
|
|
29
|
+
dependencies = [
|
|
30
|
+
"dbt-common>=1.13,<2.0",
|
|
31
|
+
"pytz>=2015.7",
|
|
32
|
+
# installed via dbt-common but used directly
|
|
33
|
+
"agate>=1.0,<2.0",
|
|
34
|
+
"mashumaro[msgpack]>=3.9,<3.15",
|
|
35
|
+
"protobuf>=5.0,<6.0",
|
|
36
|
+
"typing-extensions>=4.0,<5.0",
|
|
37
|
+
]
|
|
38
|
+
[project.urls]
|
|
39
|
+
Homepage = "https://github.com/dbt-labs/dbt-adapters/tree/main/dbt-adapters"
|
|
40
|
+
Documentation = "https://docs.getdbt.com"
|
|
41
|
+
Repository = "https://github.com/dbt-labs/dbt-adapters.git#subdirectory=dbt-adapters"
|
|
42
|
+
Issues = "https://github.com/dbt-labs/dbt-adapters/issues"
|
|
43
|
+
Changelog = "https://github.com/dbt-labs/dbt-adapters/blob/main/dbt-adapters/CHANGELOG.md"
|
|
44
|
+
|
|
45
|
+
[tool.mypy]
|
|
46
|
+
mypy_path = "third-party-stubs/"
|
|
47
|
+
[[tool.mypy.overrides]]
|
|
48
|
+
module = ["dbt.adapters.events.adapter_types_pb2"]
|
|
49
|
+
follow_imports = "skip"
|
|
50
|
+
|
|
51
|
+
[tool.pytest]
|
|
52
|
+
env_files = ["test.env"]
|
|
53
|
+
testpaths = [
|
|
54
|
+
"tests/functional",
|
|
55
|
+
"tests/unit",
|
|
56
|
+
]
|
|
57
|
+
color = true
|
|
58
|
+
csv = "results.csv"
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
# N.B.
|
|
2
|
-
# This will add to the package’s __path__ all subdirectories of directories on sys.path named after the package which effectively combines both modules into a single namespace (dbt.adapters)
|
|
3
|
-
|
|
4
|
-
from pkgutil import extend_path
|
|
5
|
-
|
|
6
|
-
__path__ = extend_path(__path__, __name__)
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version = "1.13.2"
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
[project]
|
|
2
|
-
dynamic = ["version"]
|
|
3
|
-
name = "dbt-adapters"
|
|
4
|
-
description = "The set of adapter protocols and base functionality that supports integration with dbt-core"
|
|
5
|
-
readme = "README.md"
|
|
6
|
-
keywords = ["dbt", "adapter", "adapters", "database", "elt", "dbt-core", "dbt Core", "dbt Cloud", "dbt Labs"]
|
|
7
|
-
requires-python = ">=3.9.0"
|
|
8
|
-
authors = [
|
|
9
|
-
{ name = "dbt Labs", email = "info@dbtlabs.com" },
|
|
10
|
-
]
|
|
11
|
-
maintainers = [
|
|
12
|
-
{ name = "dbt Labs", email = "info@dbtlabs.com" },
|
|
13
|
-
]
|
|
14
|
-
classifiers = [
|
|
15
|
-
"Development Status :: 5 - Production/Stable",
|
|
16
|
-
"License :: OSI Approved :: Apache Software License",
|
|
17
|
-
"Operating System :: MacOS :: MacOS X",
|
|
18
|
-
"Operating System :: Microsoft :: Windows",
|
|
19
|
-
"Operating System :: POSIX :: Linux",
|
|
20
|
-
"Programming Language :: Python :: 3.9",
|
|
21
|
-
"Programming Language :: Python :: 3.10",
|
|
22
|
-
"Programming Language :: Python :: 3.11",
|
|
23
|
-
"Programming Language :: Python :: 3.12",
|
|
24
|
-
]
|
|
25
|
-
dependencies = [
|
|
26
|
-
"dbt-common>=1.13,<2.0",
|
|
27
|
-
"pytz>=2015.7",
|
|
28
|
-
# installed via dbt-common but used directly
|
|
29
|
-
"agate>=1.0,<2.0",
|
|
30
|
-
"mashumaro[msgpack]>=3.9,<3.15",
|
|
31
|
-
"protobuf>=5.0,<6.0",
|
|
32
|
-
"typing-extensions>=4.0,<5.0",
|
|
33
|
-
]
|
|
34
|
-
[project.urls]
|
|
35
|
-
Homepage = "https://github.com/dbt-labs/dbt-adapters"
|
|
36
|
-
Documentation = "https://docs.getdbt.com"
|
|
37
|
-
Repository = "https://github.com/dbt-labs/dbt-adapters.git"
|
|
38
|
-
Issues = "https://github.com/dbt-labs/dbt-adapters/issues"
|
|
39
|
-
Changelog = "https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md"
|
|
40
|
-
|
|
41
|
-
[build-system]
|
|
42
|
-
requires = ["hatchling"]
|
|
43
|
-
build-backend = "hatchling.build"
|
|
44
|
-
|
|
45
|
-
[tool.hatch.version]
|
|
46
|
-
path = "dbt/adapters/__about__.py"
|
|
47
|
-
|
|
48
|
-
[tool.hatch.build.targets.sdist]
|
|
49
|
-
include = ["dbt/adapters", "dbt/include", "dbt/__init__.py"]
|
|
50
|
-
|
|
51
|
-
[tool.hatch.build.targets.wheel]
|
|
52
|
-
include = ["dbt/adapters", "dbt/include", "dbt/__init__.py"]
|
|
53
|
-
|
|
54
|
-
[tool.hatch.envs.default]
|
|
55
|
-
python = "3.9"
|
|
56
|
-
dependencies = [
|
|
57
|
-
"dbt_common @ git+https://github.com/dbt-labs/dbt-common.git",
|
|
58
|
-
'pre-commit==3.7.0;python_version>="3.9"',
|
|
59
|
-
'pre-commit==3.5.0;python_version=="3.8"',
|
|
60
|
-
"pytest",
|
|
61
|
-
"pytest-dotenv",
|
|
62
|
-
"pytest-xdist",
|
|
63
|
-
]
|
|
64
|
-
[tool.hatch.envs.default.scripts]
|
|
65
|
-
setup = "pre-commit install"
|
|
66
|
-
code-quality = "pre-commit run --all-files"
|
|
67
|
-
unit-tests = "python -m pytest {args:tests/unit}"
|
|
68
|
-
workflow-code-quality = "gh workflow run _code-quality.yml --ref $(git rev-parse --abbrev-ref HEAD) -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
69
|
-
workflow-generate-changelog = "gh workflow run _generate-changelog.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f merge=false -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
70
|
-
workflow-publish-pypi = "gh workflow run _publish-pypi.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f deploy-to=test -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
71
|
-
workflow-unit-tests = "gh workflow run _unit-tests.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
72
|
-
workflow-verify-build = "gh workflow run _verify-build.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD)"
|
|
73
|
-
workflow-publish = "gh workflow run publish.yml --ref $(git rev-parse --abbrev-ref HEAD) -f package=dbt-adapters -f branch=$(git rev-parse --abbrev-ref HEAD) -f deploy-to=test -f pypi-internal=false -f pypi-public=true"
|
|
74
|
-
|
|
75
|
-
[tool.hatch.envs.build]
|
|
76
|
-
detached = true
|
|
77
|
-
dependencies = [
|
|
78
|
-
"wheel",
|
|
79
|
-
"twine",
|
|
80
|
-
"check-wheel-contents",
|
|
81
|
-
]
|
|
82
|
-
[tool.hatch.envs.build.scripts]
|
|
83
|
-
check-all = [
|
|
84
|
-
"- check-wheel",
|
|
85
|
-
"- check-sdist",
|
|
86
|
-
]
|
|
87
|
-
check-wheel = [
|
|
88
|
-
"twine check dist/*",
|
|
89
|
-
"find ./dist/dbt_adapters-*.whl -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
|
|
90
|
-
"pip freeze | grep dbt-adapters",
|
|
91
|
-
]
|
|
92
|
-
check-sdist = [
|
|
93
|
-
"check-wheel-contents dist/*.whl --ignore W007,W008",
|
|
94
|
-
"find ./dist/dbt_adapters-*.gz -maxdepth 1 -type f | xargs python -m pip install --force-reinstall --find-links=dist/",
|
|
95
|
-
"pip freeze | grep dbt-adapters",
|
|
96
|
-
]
|
|
97
|
-
protobuf = "protoc -I=./dbt/adapters/events --python_out=./dbt/adapters/events ./dbt/adapters/events/adapter_types.proto"
|
|
98
|
-
|
|
99
|
-
[tool.mypy]
|
|
100
|
-
mypy_path = "third-party-stubs/"
|
|
101
|
-
[[tool.mypy.overrides]]
|
|
102
|
-
module = ["dbt.adapters.events.adapter_types_pb2"]
|
|
103
|
-
follow_imports = "skip"
|
|
104
|
-
|
|
105
|
-
[tool.pytest]
|
|
106
|
-
env_files = ["test.env"]
|
|
107
|
-
testpaths = [
|
|
108
|
-
"tests/functional",
|
|
109
|
-
"tests/unit",
|
|
110
|
-
]
|
|
111
|
-
color = true
|
|
112
|
-
csv = "results.csv"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/adapters/relation_configs/config_validation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/columns.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/freshness.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/indexes.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/metadata.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/relation.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/schema.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/adapters/show.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/etc/datetime.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/etc/statement.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/create.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/drop.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/rename.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/relations/schema.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/any_value.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/array_append.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/array_concat.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/bool_or.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/cast.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/concat.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/data_types.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date_spine.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/date_trunc.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/dateadd.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/datediff.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/except.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/hash.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/intersect.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/last_day.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/length.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/listagg.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/literal.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/position.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/right.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/safe_cast.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/macros/utils/split_part.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.13.2 → dbt_adapters-1.14.0}/dbt/include/global_project/tests/generic/builtin.sql
RENAMED
|
File without changes
|
|
File without changes
|