dbt-adapters 1.9.0__tar.gz → 1.10.1__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.9.0 → dbt_adapters-1.10.1}/PKG-INFO +8 -6
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/README.md +5 -3
- dbt_adapters-1.10.1/dbt/adapters/__about__.py +1 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/capability.py +3 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/adapter_types_pb2.py +17 -7
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/pyproject.toml +2 -2
- dbt_adapters-1.9.0/dbt/adapters/__about__.py +0 -1
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/.gitignore +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/LICENSE +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/README.md +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/column.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/connections.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/impl.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/meta.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/plugin.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/query_headers.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/base/relation.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/cache.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/clients/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/clients/jinja.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/contracts/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/contracts/connection.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/contracts/macros.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/contracts/relation.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/README.md +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/adapter_types.proto +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/base_types.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/logging.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/events/types.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/alias.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/cache.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/compilation.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/connection.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/exceptions/database.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/factory.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/protocol.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/py.typed +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/cursor.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/description.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/execute.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/fetchall.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/fetchmany.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/fetchone.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/cursor/rowcount.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/record/handle.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/reference_keys.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/relation_configs/README.md +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/relation_configs/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/relation_configs/config_base.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/relation_configs/config_change.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/relation_configs/config_validation.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/sql/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/sql/connections.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/sql/impl.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/adapters/utils.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/__init__.py +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/dbt_project.yml +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/docs/overview.md +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/apply_grants.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/columns.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/freshness.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/indexes.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/metadata.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/persist_docs.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/relation.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/schema.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/show.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/timestamps.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/validate_sql.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/etc/datetime.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/etc/statement.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/generic_test_sql/accepted_values.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/generic_test_sql/not_null.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/generic_test_sql/relationships.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/generic_test_sql/unique.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/get_custom_name/get_custom_alias.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/get_custom_name/get_custom_database.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/get_custom_name/get_custom_schema.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/configs.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/hooks.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/clone/can_clone_table.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/clone/clone.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/column_helpers.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/incremental.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/is_incremental.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/merge.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/incremental/strategies.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/materialized_view.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/table.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/models/view.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/seeds/helpers.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/seeds/seed.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/snapshots/helpers.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/snapshots/strategies.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/tests/helpers.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/tests/test.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/tests/unit.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/materializations/tests/where_subquery.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/python_model/python.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/column/columns_spec_ddl.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/create.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/create_backup.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/create_intermediate.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/drop.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/drop_backup.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/alter.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/create.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/drop.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/refresh.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/rename.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/materialized_view/replace.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/rename.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/rename_intermediate.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/replace.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/schema.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/table/create.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/table/drop.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/table/rename.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/table/replace.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/view/create.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/view/drop.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/view/rename.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/view/replace.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/any_value.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/array_append.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/array_concat.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/array_construct.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/bool_or.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/cast.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/cast_bool_to_text.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/concat.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/data_types.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/date.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/date_spine.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/date_trunc.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/dateadd.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/datediff.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/escape_single_quotes.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/except.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/generate_series.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/hash.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/intersect.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/last_day.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/length.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/listagg.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/literal.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/position.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/replace.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/right.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/safe_cast.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/split_part.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/tests/generic/builtin.sql +0 -0
- {dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dbt-adapters
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.10.1
|
|
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
|
|
@@ -21,9 +21,9 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Requires-Python: >=3.9.0
|
|
23
23
|
Requires-Dist: agate<2.0,>=1.0
|
|
24
|
-
Requires-Dist: dbt-common<2.0,>=1.
|
|
24
|
+
Requires-Dist: dbt-common<2.0,>=1.13
|
|
25
25
|
Requires-Dist: mashumaro[msgpack]<4.0,>=3.0
|
|
26
|
-
Requires-Dist: protobuf<
|
|
26
|
+
Requires-Dist: protobuf<6.0,>=5.0
|
|
27
27
|
Requires-Dist: pytz>=2015.7
|
|
28
28
|
Requires-Dist: typing-extensions<5.0,>=4.0
|
|
29
29
|
Description-Content-Type: text/markdown
|
|
@@ -32,7 +32,7 @@ Description-Content-Type: text/markdown
|
|
|
32
32
|
<img src="https://raw.githubusercontent.com/dbt-labs/dbt/ec7dee39f793aa4f7dd3dae37282cc87664813e4/etc/dbt-logo-full.svg" alt="dbt logo" width="500"/>
|
|
33
33
|
</p>
|
|
34
34
|
|
|
35
|
-
# dbt-
|
|
35
|
+
# dbt-adapters
|
|
36
36
|
|
|
37
37
|
This package is responsible for:
|
|
38
38
|
|
|
@@ -40,9 +40,11 @@ This package is responsible for:
|
|
|
40
40
|
- caching information from databases
|
|
41
41
|
- determining how relations are defined
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
In this repo there is also our testing suite used for tesing adapter functionality
|
|
44
|
+
|
|
45
|
+
# Adapters
|
|
44
46
|
|
|
45
|
-
|
|
47
|
+
There are two major adapter types: base and sql
|
|
46
48
|
|
|
47
49
|
## `base`
|
|
48
50
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<img src="https://raw.githubusercontent.com/dbt-labs/dbt/ec7dee39f793aa4f7dd3dae37282cc87664813e4/etc/dbt-logo-full.svg" alt="dbt logo" width="500"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
# dbt-
|
|
5
|
+
# dbt-adapters
|
|
6
6
|
|
|
7
7
|
This package is responsible for:
|
|
8
8
|
|
|
@@ -10,9 +10,11 @@ This package is responsible for:
|
|
|
10
10
|
- caching information from databases
|
|
11
11
|
- determining how relations are defined
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
In this repo there is also our testing suite used for tesing adapter functionality
|
|
14
|
+
|
|
15
|
+
# Adapters
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
There are two major adapter types: base and sql
|
|
16
18
|
|
|
17
19
|
## `base`
|
|
18
20
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "1.10.1"
|
|
@@ -21,6 +21,9 @@ class Capability(str, Enum):
|
|
|
21
21
|
"""Indicates support for getting catalog information including table-level and column-level metadata for a single
|
|
22
22
|
relation."""
|
|
23
23
|
|
|
24
|
+
MicrobatchConcurrency = "MicrobatchConcurrency"
|
|
25
|
+
"""Indicates support running the microbatch incremental materialization strategy concurrently across threads."""
|
|
26
|
+
|
|
24
27
|
|
|
25
28
|
class Support(str, Enum):
|
|
26
29
|
Unknown = "Unknown"
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
3
4
|
# source: adapter_types.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.3
|
|
4
6
|
"""Generated protocol buffer code."""
|
|
5
7
|
from google.protobuf import descriptor as _descriptor
|
|
6
8
|
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
7
10
|
from google.protobuf import symbol_database as _symbol_database
|
|
8
11
|
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
3,
|
|
17
|
+
'',
|
|
18
|
+
'adapter_types.proto'
|
|
19
|
+
)
|
|
9
20
|
# @@protoc_insertion_point(imports)
|
|
10
21
|
|
|
11
22
|
_sym_db = _symbol_database.Default()
|
|
@@ -20,13 +31,12 @@ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61\x64\x61pt
|
|
|
20
31
|
_globals = globals()
|
|
21
32
|
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
22
33
|
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'adapter_types_pb2', _globals)
|
|
23
|
-
if _descriptor._USE_C_DESCRIPTORS
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
_ADAPTERCOMMONEVENTINFO_EXTRAENTRY.
|
|
27
|
-
|
|
28
|
-
_CACHEDUMPGRAPH_DUMPENTRY.
|
|
29
|
-
_CACHEDUMPGRAPH_DUMPENTRY._serialized_options = b'8\001'
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
DESCRIPTOR._loaded_options = None
|
|
36
|
+
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._loaded_options = None
|
|
37
|
+
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._serialized_options = b'8\001'
|
|
38
|
+
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._loaded_options = None
|
|
39
|
+
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_options = b'8\001'
|
|
30
40
|
_globals['_ADAPTERCOMMONEVENTINFO']._serialized_start=100
|
|
31
41
|
_globals['_ADAPTERCOMMONEVENTINFO']._serialized_end=399
|
|
32
42
|
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._serialized_start=355
|
|
@@ -23,12 +23,12 @@ classifiers = [
|
|
|
23
23
|
"Programming Language :: Python :: 3.12",
|
|
24
24
|
]
|
|
25
25
|
dependencies = [
|
|
26
|
-
"dbt-common>=1.
|
|
26
|
+
"dbt-common>=1.13,<2.0",
|
|
27
27
|
"pytz>=2015.7",
|
|
28
28
|
# installed via dbt-common but used directly
|
|
29
29
|
"agate>=1.0,<2.0",
|
|
30
30
|
"mashumaro[msgpack]>=3.0,<4.0",
|
|
31
|
-
"protobuf>=
|
|
31
|
+
"protobuf>=5.0,<6.0",
|
|
32
32
|
"typing-extensions>=4.0,<5.0",
|
|
33
33
|
]
|
|
34
34
|
[project.urls]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
version = "1.9.0"
|
|
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.9.0 → dbt_adapters-1.10.1}/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.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/columns.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/freshness.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/indexes.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/metadata.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/relation.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/schema.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/show.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/adapters/timestamps.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/etc/datetime.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/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
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/python_model/python.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/create.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/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.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/rename.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/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
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/relations/view/drop.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/any_value.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/array_append.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/array_concat.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/bool_or.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/concat.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/data_types.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/date_spine.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/date_trunc.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/dateadd.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/datediff.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/except.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/intersect.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/last_day.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/length.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/listagg.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/literal.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/position.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/right.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/safe_cast.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/macros/utils/split_part.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.9.0 → dbt_adapters-1.10.1}/dbt/include/global_project/tests/generic/builtin.sql
RENAMED
|
File without changes
|
|
File without changes
|