dbt-adapters 1.8.0__tar.gz → 1.10.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.8.0 → dbt_adapters-1.10.0}/PKG-INFO +3 -4
- dbt_adapters-1.10.0/dbt/adapters/__about__.py +1 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/impl.py +28 -4
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/contracts/connection.py +1 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/adapter_types.proto +1 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/adapter_types_pb2.py +113 -102
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/sql/connections.py +4 -1
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/pyproject.toml +2 -2
- dbt_adapters-1.8.0/dbt/adapters/__about__.py +0 -1
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/.gitignore +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/LICENSE +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/README.md +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/README.md +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/column.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/connections.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/meta.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/plugin.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/query_headers.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/base/relation.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/cache.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/capability.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/clients/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/clients/jinja.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/contracts/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/contracts/macros.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/contracts/relation.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/README.md +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/base_types.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/logging.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/events/types.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/alias.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/cache.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/compilation.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/connection.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/exceptions/database.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/factory.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/protocol.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/py.typed +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/cursor.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/description.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/execute.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/fetchall.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/fetchmany.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/fetchone.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/cursor/rowcount.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/record/handle.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/reference_keys.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/relation_configs/README.md +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/relation_configs/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/relation_configs/config_base.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/relation_configs/config_change.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/relation_configs/config_validation.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/sql/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/sql/impl.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/adapters/utils.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/__init__.py +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/dbt_project.yml +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/docs/overview.md +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/apply_grants.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/columns.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/freshness.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/indexes.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/metadata.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/persist_docs.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/relation.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/schema.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/show.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/timestamps.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/validate_sql.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/etc/datetime.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/etc/statement.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/generic_test_sql/accepted_values.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/generic_test_sql/not_null.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/generic_test_sql/relationships.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/generic_test_sql/unique.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/get_custom_name/get_custom_alias.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/get_custom_name/get_custom_database.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/get_custom_name/get_custom_schema.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/configs.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/hooks.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/clone/can_clone_table.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/clone/clone.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/clone/create_or_replace_clone.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/column_helpers.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/incremental.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/is_incremental.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/merge.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/on_schema_change.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/incremental/strategies.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/materialized_view.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/table.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/models/view.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/seeds/helpers.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/seeds/seed.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/snapshots/helpers.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/snapshots/snapshot_merge.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/snapshots/strategies.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/tests/helpers.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/tests/test.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/tests/unit.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/materializations/tests/where_subquery.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/python_model/python.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/column/columns_spec_ddl.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/create.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/create_backup.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/create_intermediate.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/drop.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/drop_backup.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/alter.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/create.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/drop.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/refresh.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/rename.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/materialized_view/replace.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/rename.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/rename_intermediate.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/replace.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/schema.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/table/create.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/table/drop.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/table/rename.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/table/replace.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/view/create.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/view/drop.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/view/rename.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/view/replace.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/unit_test_sql/get_fixture_sql.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/any_value.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/array_append.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/array_concat.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/array_construct.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/bool_or.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/cast.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/cast_bool_to_text.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/concat.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/data_types.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/date.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/date_spine.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/date_trunc.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/dateadd.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/datediff.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/escape_single_quotes.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/except.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/generate_series.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/hash.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/intersect.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/last_day.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/length.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/listagg.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/literal.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/position.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/replace.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/right.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/safe_cast.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/split_part.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/tests/generic/builtin.sql +0 -0
- {dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/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.0
|
|
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
|
|
@@ -9,7 +9,6 @@ Project-URL: Issues, https://github.com/dbt-labs/dbt-adapters/issues
|
|
|
9
9
|
Project-URL: Changelog, https://github.com/dbt-labs/dbt-adapters/blob/main/CHANGELOG.md
|
|
10
10
|
Author-email: dbt Labs <info@dbtlabs.com>
|
|
11
11
|
Maintainer-email: dbt Labs <info@dbtlabs.com>
|
|
12
|
-
License-File: LICENSE
|
|
13
12
|
Keywords: adapter,adapters,database,dbt,dbt Cloud,dbt Core,dbt Labs,dbt-core,elt
|
|
14
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
15
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
@@ -22,9 +21,9 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
23
22
|
Requires-Python: >=3.9.0
|
|
24
23
|
Requires-Dist: agate<2.0,>=1.0
|
|
25
|
-
Requires-Dist: dbt-common<2.0,>=1.
|
|
24
|
+
Requires-Dist: dbt-common<2.0,>=1.13
|
|
26
25
|
Requires-Dist: mashumaro[msgpack]<4.0,>=3.0
|
|
27
|
-
Requires-Dist: protobuf<
|
|
26
|
+
Requires-Dist: protobuf<6.0,>=5.0
|
|
28
27
|
Requires-Dist: pytz>=2015.7
|
|
29
28
|
Requires-Dist: typing-extensions<5.0,>=4.0
|
|
30
29
|
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
version = "1.10.0"
|
|
@@ -23,7 +23,6 @@ from typing import (
|
|
|
23
23
|
Union,
|
|
24
24
|
TYPE_CHECKING,
|
|
25
25
|
)
|
|
26
|
-
import os
|
|
27
26
|
import pytz
|
|
28
27
|
from dbt_common.behavior_flags import Behavior, BehaviorFlag
|
|
29
28
|
from dbt_common.clients.jinja import CallableMacroGenerator
|
|
@@ -99,6 +98,13 @@ GET_CATALOG_MACRO_NAME = "get_catalog"
|
|
|
99
98
|
GET_CATALOG_RELATIONS_MACRO_NAME = "get_catalog_relations"
|
|
100
99
|
FRESHNESS_MACRO_NAME = "collect_freshness"
|
|
101
100
|
GET_RELATION_LAST_MODIFIED_MACRO_NAME = "get_relation_last_modified"
|
|
101
|
+
DEFAULT_BASE_BEHAVIOR_FLAGS = [
|
|
102
|
+
{
|
|
103
|
+
"name": "require_batched_execution_for_custom_microbatch_strategy",
|
|
104
|
+
"default": False,
|
|
105
|
+
"docs_url": "https://docs.getdbt.com/docs/build/incremental-microbatch",
|
|
106
|
+
}
|
|
107
|
+
]
|
|
102
108
|
|
|
103
109
|
|
|
104
110
|
class ConstraintSupport(str, Enum):
|
|
@@ -274,8 +280,7 @@ class BaseAdapter(metaclass=AdapterMeta):
|
|
|
274
280
|
self.connections = self.ConnectionManager(config, mp_context)
|
|
275
281
|
self._macro_resolver: Optional[MacroResolverProtocol] = None
|
|
276
282
|
self._macro_context_generator: Optional[MacroContextGeneratorCallable] = None
|
|
277
|
-
|
|
278
|
-
self.behavior = [] # type: ignore
|
|
283
|
+
self.behavior = DEFAULT_BASE_BEHAVIOR_FLAGS # type: ignore
|
|
279
284
|
|
|
280
285
|
###
|
|
281
286
|
# Methods to set / access a macro resolver
|
|
@@ -315,6 +320,8 @@ class BaseAdapter(metaclass=AdapterMeta):
|
|
|
315
320
|
def _behavior_flags(self) -> List[BehaviorFlag]:
|
|
316
321
|
"""
|
|
317
322
|
This method should be overwritten by adapter maintainers to provide platform-specific flags
|
|
323
|
+
|
|
324
|
+
The BaseAdapter should NOT include any global flags here as those should be defined via DEFAULT_BASE_BEHAVIOR_FLAGS
|
|
318
325
|
"""
|
|
319
326
|
return []
|
|
320
327
|
|
|
@@ -1573,14 +1580,31 @@ class BaseAdapter(metaclass=AdapterMeta):
|
|
|
1573
1580
|
return ["append"]
|
|
1574
1581
|
|
|
1575
1582
|
def builtin_incremental_strategies(self):
|
|
1583
|
+
"""
|
|
1584
|
+
List of possible builtin strategies for adapters
|
|
1585
|
+
|
|
1586
|
+
Microbatch is added by _default_. It is only not added when the behavior flag
|
|
1587
|
+
`require_batched_execution_for_custom_microbatch_strategy` is True.
|
|
1588
|
+
"""
|
|
1576
1589
|
builtin_strategies = ["append", "delete+insert", "merge", "insert_overwrite"]
|
|
1577
|
-
if
|
|
1590
|
+
if not self.behavior.require_batched_execution_for_custom_microbatch_strategy.no_warn:
|
|
1578
1591
|
builtin_strategies.append("microbatch")
|
|
1579
1592
|
|
|
1580
1593
|
return builtin_strategies
|
|
1581
1594
|
|
|
1582
1595
|
@available.parse_none
|
|
1583
1596
|
def get_incremental_strategy_macro(self, model_context, strategy: str):
|
|
1597
|
+
"""Gets the macro for the given incremental strategy.
|
|
1598
|
+
|
|
1599
|
+
Additionally some validations are done:
|
|
1600
|
+
1. Assert that if the given strategy is a "builtin" strategy, then it must
|
|
1601
|
+
also be defined as a "valid" strategy for the associated adapter
|
|
1602
|
+
2. Assert that the incremental strategy exists in the model context
|
|
1603
|
+
|
|
1604
|
+
Notably, something be defined by the adapter as "valid" without it being
|
|
1605
|
+
a "builtin", and nothing will break (and that is desirable).
|
|
1606
|
+
"""
|
|
1607
|
+
|
|
1584
1608
|
# Construct macro_name from strategy name
|
|
1585
1609
|
if strategy is None:
|
|
1586
1610
|
strategy = "default"
|
|
@@ -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()
|
|
@@ -15,16 +26,16 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__
|
|
|
15
26
|
from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
|
|
16
27
|
|
|
17
28
|
|
|
18
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61\x64\x61pter_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xab\x02\n\x16\x41\x64\x61pterCommonEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12=\n\x05\x65xtra\x18\t \x03(\x0b\x32..proto_types.AdapterCommonEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"]\n\x13\x41\x64\x61pterNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x9f\x02\n\x0f\x41\x64\x61pterNodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x37\n\rnode_relation\x18\n \x01(\x0b\x32 .proto_types.AdapterNodeRelation\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x87\x01\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x93\x01\n\"CollectFreshnessReturnSignatureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x8e\x01\n\x11\x41\x64\x61pterEventDebug\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"w\n\x14\x41\x64\x61pterEventDebugMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x8d\x01\n\x10\x41\x64\x61pterEventInfo\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"u\n\x13\x41\x64\x61pterEventInfoMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x90\x01\n\x13\x41\x64\x61pterEventWarning\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"{\n\x16\x41\x64\x61pterEventWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\xa0\x01\n\x11\x41\x64\x61pterEventError\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"w\n\x14\x41\x64\x61pterEventErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"f\n\rNewConnection\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"o\n\x10NewConnectionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionReusedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x8b\x01\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x87\x01\n\x1c\x43onnectionClosedInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"f\n\x0eRollbackFailed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"q\n\x11RollbackFailedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"V\n\x10\x43onnectionClosed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionClosedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"X\n\x12\x43onnectionLeftOpen\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"y\n\x15\x43onnectionLeftOpenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"N\n\x08Rollback\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"e\n\x0bRollbackMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"g\n\x0c\x43\x61\x63heMissMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10ListRelationsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"g\n\x0e\x43onnectionUsed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"q\n\x11\x43onnectionUsedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"[\n\x08SQLQuery\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"e\n\x0bSQLQueryMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"b\n\x0eSQLQueryStatus\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\"q\n\x11SQLQueryStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"O\n\tSQLCommit\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"g\n\x0cSQLCommitMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10\x43olTypeChangeMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"q\n\x11SchemaCreationMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"i\n\rSchemaDropMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"k\n\x0e\x43\x61\x63heActionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"q\n\x11\x43\x61\x63heDumpGraphMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"w\n\x14\x41\x64\x61pterRegisteredMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"y\n\x15\x41\x64\x61pterImportErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"s\n\x12PluginLoadErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"a\n\x14NewConnectionOpening\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"}\n\x17NewConnectionOpeningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"o\n\x10\x43odeExecutionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"{\n\x16\x43odeExecutionStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x81\x01\n\x19\x43\x61talogGenerationErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"{\n\x16WriteCatalogFailureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"q\n\x11\x43\x61talogWrittenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"y\n\x15\x43\x61nnotGenerateDocsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"s\n\x12\x42uildingCatalogMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"\x85\x01\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"m\n\x0fHooksRunningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"}\n\x17\x46inishedRunningStatsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x7f\n\x18\x43onstraintNotEnforcedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x81\x01\n\x19\x43onstraintNotSupportedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"%\n\x10TypeCodeNotFound\x12\x11\n\ttype_code\x18\x01 \x01(\x05\"u\n\x13TypeCodeNotFoundMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.TypeCodeNotFoundb\x06proto3')
|
|
29
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x13\x61\x64\x61pter_types.proto\x12\x0bproto_types\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x1cgoogle/protobuf/struct.proto\"\xab\x02\n\x16\x41\x64\x61pterCommonEventInfo\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0c\n\x04\x63ode\x18\x02 \x01(\t\x12\x0b\n\x03msg\x18\x03 \x01(\t\x12\r\n\x05level\x18\x04 \x01(\t\x12\x15\n\rinvocation_id\x18\x05 \x01(\t\x12\x0b\n\x03pid\x18\x06 \x01(\x05\x12\x0e\n\x06thread\x18\x07 \x01(\t\x12&\n\x02ts\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12=\n\x05\x65xtra\x18\t \x03(\x0b\x32..proto_types.AdapterCommonEventInfo.ExtraEntry\x12\x10\n\x08\x63\x61tegory\x18\n \x01(\t\x1a,\n\nExtraEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"]\n\x13\x41\x64\x61pterNodeRelation\x12\x10\n\x08\x64\x61tabase\x18\n \x01(\t\x12\x0e\n\x06schema\x18\x0b \x01(\t\x12\r\n\x05\x61lias\x18\x0c \x01(\t\x12\x15\n\rrelation_name\x18\r \x01(\t\"\x9f\x02\n\x0f\x41\x64\x61pterNodeInfo\x12\x11\n\tnode_path\x18\x01 \x01(\t\x12\x11\n\tnode_name\x18\x02 \x01(\t\x12\x11\n\tunique_id\x18\x03 \x01(\t\x12\x15\n\rresource_type\x18\x04 \x01(\t\x12\x14\n\x0cmaterialized\x18\x05 \x01(\t\x12\x13\n\x0bnode_status\x18\x06 \x01(\t\x12\x17\n\x0fnode_started_at\x18\x07 \x01(\t\x12\x18\n\x10node_finished_at\x18\x08 \x01(\t\x12%\n\x04meta\x18\t \x01(\x0b\x32\x17.google.protobuf.Struct\x12\x37\n\rnode_relation\x18\n \x01(\x0b\x32 .proto_types.AdapterNodeRelation\"G\n\x0fReferenceKeyMsg\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x12\n\nidentifier\x18\x03 \x01(\t\"?\n\x19\x41\x64\x61pterDeprecationWarning\x12\x10\n\x08old_name\x18\x01 \x01(\t\x12\x10\n\x08new_name\x18\x02 \x01(\t\"\x87\x01\n\x1c\x41\x64\x61pterDeprecationWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.AdapterDeprecationWarning\"!\n\x1f\x43ollectFreshnessReturnSignature\"\x93\x01\n\"CollectFreshnessReturnSignatureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12:\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32,.proto_types.CollectFreshnessReturnSignature\"\x8e\x01\n\x11\x41\x64\x61pterEventDebug\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"w\n\x14\x41\x64\x61pterEventDebugMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventDebug\"\x8d\x01\n\x10\x41\x64\x61pterEventInfo\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"u\n\x13\x41\x64\x61pterEventInfoMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.AdapterEventInfo\"\x90\x01\n\x13\x41\x64\x61pterEventWarning\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\"{\n\x16\x41\x64\x61pterEventWarningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.AdapterEventWarning\"\xa0\x01\n\x11\x41\x64\x61pterEventError\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x10\n\x08\x62\x61se_msg\x18\x03 \x01(\t\x12(\n\x04\x61rgs\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.ListValue\x12\x10\n\x08\x65xc_info\x18\x05 \x01(\t\"w\n\x14\x41\x64\x61pterEventErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterEventError\"f\n\rNewConnection\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"o\n\x10NewConnectionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.NewConnection\"=\n\x10\x43onnectionReused\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x16\n\x0eorig_conn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionReusedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionReused\"0\n\x1b\x43onnectionLeftOpenInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x8b\x01\n\x1e\x43onnectionLeftOpenInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x36\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32(.proto_types.ConnectionLeftOpenInCleanup\".\n\x19\x43onnectionClosedInCleanup\x12\x11\n\tconn_name\x18\x01 \x01(\t\"\x87\x01\n\x1c\x43onnectionClosedInCleanupMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x34\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32&.proto_types.ConnectionClosedInCleanup\"f\n\x0eRollbackFailed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x10\n\x08\x65xc_info\x18\x03 \x01(\t\"q\n\x11RollbackFailedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.RollbackFailed\"V\n\x10\x43onnectionClosed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"u\n\x13\x43onnectionClosedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.ConnectionClosed\"X\n\x12\x43onnectionLeftOpen\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"y\n\x15\x43onnectionLeftOpenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.ConnectionLeftOpen\"N\n\x08Rollback\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"e\n\x0bRollbackMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.Rollback\"@\n\tCacheMiss\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x02 \x01(\t\x12\x0e\n\x06schema\x18\x03 \x01(\t\"g\n\x0c\x43\x61\x63heMissMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.CacheMiss\"b\n\rListRelations\x12\x10\n\x08\x64\x61tabase\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12/\n\trelations\x18\x03 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10ListRelationsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ListRelations\"g\n\x0e\x43onnectionUsed\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_type\x18\x02 \x01(\t\x12\x11\n\tconn_name\x18\x03 \x01(\t\"q\n\x11\x43onnectionUsedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.ConnectionUsed\"[\n\x08SQLQuery\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\x12\x0b\n\x03sql\x18\x03 \x01(\t\"e\n\x0bSQLQueryMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12#\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x15.proto_types.SQLQuery\"t\n\x0eSQLQueryStatus\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x0e\n\x06status\x18\x02 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x03 \x01(\x02\x12\x10\n\x08query_id\x18\x04 \x01(\t\"q\n\x11SQLQueryStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SQLQueryStatus\"O\n\tSQLCommit\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x11\n\tconn_name\x18\x02 \x01(\t\"g\n\x0cSQLCommitMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12$\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x16.proto_types.SQLCommit\"a\n\rColTypeChange\x12\x11\n\torig_type\x18\x01 \x01(\t\x12\x10\n\x08new_type\x18\x02 \x01(\t\x12+\n\x05table\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"o\n\x10\x43olTypeChangeMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.ColTypeChange\"@\n\x0eSchemaCreation\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"q\n\x11SchemaCreationMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.SchemaCreation\"<\n\nSchemaDrop\x12.\n\x08relation\x18\x01 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"i\n\rSchemaDropMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12%\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x17.proto_types.SchemaDrop\"\xde\x01\n\x0b\x43\x61\x63heAction\x12\x0e\n\x06\x61\x63tion\x18\x01 \x01(\t\x12-\n\x07ref_key\x18\x02 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_2\x18\x03 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12/\n\tref_key_3\x18\x04 \x01(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\x12.\n\x08ref_list\x18\x05 \x03(\x0b\x32\x1c.proto_types.ReferenceKeyMsg\"k\n\x0e\x43\x61\x63heActionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12&\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x18.proto_types.CacheAction\"\x98\x01\n\x0e\x43\x61\x63heDumpGraph\x12\x33\n\x04\x64ump\x18\x01 \x03(\x0b\x32%.proto_types.CacheDumpGraph.DumpEntry\x12\x14\n\x0c\x62\x65\x66ore_after\x18\x02 \x01(\t\x12\x0e\n\x06\x61\x63tion\x18\x03 \x01(\t\x1a+\n\tDumpEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"q\n\x11\x43\x61\x63heDumpGraphMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CacheDumpGraph\"B\n\x11\x41\x64\x61pterRegistered\x12\x14\n\x0c\x61\x64\x61pter_name\x18\x01 \x01(\t\x12\x17\n\x0f\x61\x64\x61pter_version\x18\x02 \x01(\t\"w\n\x14\x41\x64\x61pterRegisteredMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12,\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1e.proto_types.AdapterRegistered\"!\n\x12\x41\x64\x61pterImportError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"y\n\x15\x41\x64\x61pterImportErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.AdapterImportError\"#\n\x0fPluginLoadError\x12\x10\n\x08\x65xc_info\x18\x01 \x01(\t\"s\n\x12PluginLoadErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.PluginLoadError\"a\n\x14NewConnectionOpening\x12/\n\tnode_info\x18\x01 \x01(\x0b\x32\x1c.proto_types.AdapterNodeInfo\x12\x18\n\x10\x63onnection_state\x18\x02 \x01(\t\"}\n\x17NewConnectionOpeningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.NewConnectionOpening\"8\n\rCodeExecution\x12\x11\n\tconn_name\x18\x01 \x01(\t\x12\x14\n\x0c\x63ode_content\x18\x02 \x01(\t\"o\n\x10\x43odeExecutionMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12(\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1a.proto_types.CodeExecution\"6\n\x13\x43odeExecutionStatus\x12\x0e\n\x06status\x18\x01 \x01(\t\x12\x0f\n\x07\x65lapsed\x18\x02 \x01(\x02\"{\n\x16\x43odeExecutionStatusMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.CodeExecutionStatus\"%\n\x16\x43\x61talogGenerationError\x12\x0b\n\x03\x65xc\x18\x01 \x01(\t\"\x81\x01\n\x19\x43\x61talogGenerationErrorMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.CatalogGenerationError\"-\n\x13WriteCatalogFailure\x12\x16\n\x0enum_exceptions\x18\x01 \x01(\x05\"{\n\x16WriteCatalogFailureMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12.\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32 .proto_types.WriteCatalogFailure\"\x1e\n\x0e\x43\x61talogWritten\x12\x0c\n\x04path\x18\x01 \x01(\t\"q\n\x11\x43\x61talogWrittenMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12)\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1b.proto_types.CatalogWritten\"\x14\n\x12\x43\x61nnotGenerateDocs\"y\n\x15\x43\x61nnotGenerateDocsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12-\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1f.proto_types.CannotGenerateDocs\"\x11\n\x0f\x42uildingCatalog\"s\n\x12\x42uildingCatalogMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12*\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1c.proto_types.BuildingCatalog\"-\n\x18\x44\x61tabaseErrorRunningHook\x12\x11\n\thook_type\x18\x01 \x01(\t\"\x85\x01\n\x1b\x44\x61tabaseErrorRunningHookMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x33\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32%.proto_types.DatabaseErrorRunningHook\"4\n\x0cHooksRunning\x12\x11\n\tnum_hooks\x18\x01 \x01(\x05\x12\x11\n\thook_type\x18\x02 \x01(\t\"m\n\x0fHooksRunningMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\'\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x19.proto_types.HooksRunning\"T\n\x14\x46inishedRunningStats\x12\x11\n\tstat_line\x18\x01 \x01(\t\x12\x11\n\texecution\x18\x02 \x01(\t\x12\x16\n\x0e\x65xecution_time\x18\x03 \x01(\x02\"}\n\x17\x46inishedRunningStatsMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12/\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32!.proto_types.FinishedRunningStats\"<\n\x15\x43onstraintNotEnforced\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x7f\n\x18\x43onstraintNotEnforcedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x30\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\".proto_types.ConstraintNotEnforced\"=\n\x16\x43onstraintNotSupported\x12\x12\n\nconstraint\x18\x01 \x01(\t\x12\x0f\n\x07\x61\x64\x61pter\x18\x02 \x01(\t\"\x81\x01\n\x19\x43onstraintNotSupportedMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12\x31\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32#.proto_types.ConstraintNotSupported\"%\n\x10TypeCodeNotFound\x12\x11\n\ttype_code\x18\x01 \x01(\x05\"u\n\x13TypeCodeNotFoundMsg\x12\x31\n\x04info\x18\x01 \x01(\x0b\x32#.proto_types.AdapterCommonEventInfo\x12+\n\x04\x64\x61ta\x18\x02 \x01(\x0b\x32\x1d.proto_types.TypeCodeNotFoundb\x06proto3')
|
|
19
30
|
|
|
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
|
-
DESCRIPTOR.
|
|
25
|
-
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY'].
|
|
34
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
35
|
+
DESCRIPTOR._loaded_options = None
|
|
36
|
+
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._loaded_options = None
|
|
26
37
|
_globals['_ADAPTERCOMMONEVENTINFO_EXTRAENTRY']._serialized_options = b'8\001'
|
|
27
|
-
_globals['_CACHEDUMPGRAPH_DUMPENTRY'].
|
|
38
|
+
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._loaded_options = None
|
|
28
39
|
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_options = b'8\001'
|
|
29
40
|
_globals['_ADAPTERCOMMONEVENTINFO']._serialized_start=100
|
|
30
41
|
_globals['_ADAPTERCOMMONEVENTINFO']._serialized_end=399
|
|
@@ -109,101 +120,101 @@ if _descriptor._USE_C_DESCRIPTORS == False:
|
|
|
109
120
|
_globals['_SQLQUERYMSG']._serialized_start=4628
|
|
110
121
|
_globals['_SQLQUERYMSG']._serialized_end=4729
|
|
111
122
|
_globals['_SQLQUERYSTATUS']._serialized_start=4731
|
|
112
|
-
_globals['_SQLQUERYSTATUS']._serialized_end=
|
|
113
|
-
_globals['_SQLQUERYSTATUSMSG']._serialized_start=
|
|
114
|
-
_globals['_SQLQUERYSTATUSMSG']._serialized_end=
|
|
115
|
-
_globals['_SQLCOMMIT']._serialized_start=
|
|
116
|
-
_globals['_SQLCOMMIT']._serialized_end=
|
|
117
|
-
_globals['_SQLCOMMITMSG']._serialized_start=
|
|
118
|
-
_globals['_SQLCOMMITMSG']._serialized_end=
|
|
119
|
-
_globals['_COLTYPECHANGE']._serialized_start=
|
|
120
|
-
_globals['_COLTYPECHANGE']._serialized_end=
|
|
121
|
-
_globals['_COLTYPECHANGEMSG']._serialized_start=
|
|
122
|
-
_globals['_COLTYPECHANGEMSG']._serialized_end=
|
|
123
|
-
_globals['_SCHEMACREATION']._serialized_start=
|
|
124
|
-
_globals['_SCHEMACREATION']._serialized_end=
|
|
125
|
-
_globals['_SCHEMACREATIONMSG']._serialized_start=
|
|
126
|
-
_globals['_SCHEMACREATIONMSG']._serialized_end=
|
|
127
|
-
_globals['_SCHEMADROP']._serialized_start=
|
|
128
|
-
_globals['_SCHEMADROP']._serialized_end=
|
|
129
|
-
_globals['_SCHEMADROPMSG']._serialized_start=
|
|
130
|
-
_globals['_SCHEMADROPMSG']._serialized_end=
|
|
131
|
-
_globals['_CACHEACTION']._serialized_start=
|
|
132
|
-
_globals['_CACHEACTION']._serialized_end=
|
|
133
|
-
_globals['_CACHEACTIONMSG']._serialized_start=
|
|
134
|
-
_globals['_CACHEACTIONMSG']._serialized_end=
|
|
135
|
-
_globals['_CACHEDUMPGRAPH']._serialized_start=
|
|
136
|
-
_globals['_CACHEDUMPGRAPH']._serialized_end=
|
|
137
|
-
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=
|
|
138
|
-
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=
|
|
139
|
-
_globals['_CACHEDUMPGRAPHMSG']._serialized_start=
|
|
140
|
-
_globals['_CACHEDUMPGRAPHMSG']._serialized_end=
|
|
141
|
-
_globals['_ADAPTERREGISTERED']._serialized_start=
|
|
142
|
-
_globals['_ADAPTERREGISTERED']._serialized_end=
|
|
143
|
-
_globals['_ADAPTERREGISTEREDMSG']._serialized_start=
|
|
144
|
-
_globals['_ADAPTERREGISTEREDMSG']._serialized_end=
|
|
145
|
-
_globals['_ADAPTERIMPORTERROR']._serialized_start=
|
|
146
|
-
_globals['_ADAPTERIMPORTERROR']._serialized_end=
|
|
147
|
-
_globals['_ADAPTERIMPORTERRORMSG']._serialized_start=
|
|
148
|
-
_globals['_ADAPTERIMPORTERRORMSG']._serialized_end=
|
|
149
|
-
_globals['_PLUGINLOADERROR']._serialized_start=
|
|
150
|
-
_globals['_PLUGINLOADERROR']._serialized_end=
|
|
151
|
-
_globals['_PLUGINLOADERRORMSG']._serialized_start=
|
|
152
|
-
_globals['_PLUGINLOADERRORMSG']._serialized_end=
|
|
153
|
-
_globals['_NEWCONNECTIONOPENING']._serialized_start=
|
|
154
|
-
_globals['_NEWCONNECTIONOPENING']._serialized_end=
|
|
155
|
-
_globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=
|
|
156
|
-
_globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=
|
|
157
|
-
_globals['_CODEEXECUTION']._serialized_start=
|
|
158
|
-
_globals['_CODEEXECUTION']._serialized_end=
|
|
159
|
-
_globals['_CODEEXECUTIONMSG']._serialized_start=
|
|
160
|
-
_globals['_CODEEXECUTIONMSG']._serialized_end=
|
|
161
|
-
_globals['_CODEEXECUTIONSTATUS']._serialized_start=
|
|
162
|
-
_globals['_CODEEXECUTIONSTATUS']._serialized_end=
|
|
163
|
-
_globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=
|
|
164
|
-
_globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=
|
|
165
|
-
_globals['_CATALOGGENERATIONERROR']._serialized_start=
|
|
166
|
-
_globals['_CATALOGGENERATIONERROR']._serialized_end=
|
|
167
|
-
_globals['_CATALOGGENERATIONERRORMSG']._serialized_start=
|
|
168
|
-
_globals['_CATALOGGENERATIONERRORMSG']._serialized_end=
|
|
169
|
-
_globals['_WRITECATALOGFAILURE']._serialized_start=
|
|
170
|
-
_globals['_WRITECATALOGFAILURE']._serialized_end=
|
|
171
|
-
_globals['_WRITECATALOGFAILUREMSG']._serialized_start=
|
|
172
|
-
_globals['_WRITECATALOGFAILUREMSG']._serialized_end=
|
|
173
|
-
_globals['_CATALOGWRITTEN']._serialized_start=
|
|
174
|
-
_globals['_CATALOGWRITTEN']._serialized_end=
|
|
175
|
-
_globals['_CATALOGWRITTENMSG']._serialized_start=
|
|
176
|
-
_globals['_CATALOGWRITTENMSG']._serialized_end=
|
|
177
|
-
_globals['_CANNOTGENERATEDOCS']._serialized_start=
|
|
178
|
-
_globals['_CANNOTGENERATEDOCS']._serialized_end=
|
|
179
|
-
_globals['_CANNOTGENERATEDOCSMSG']._serialized_start=
|
|
180
|
-
_globals['_CANNOTGENERATEDOCSMSG']._serialized_end=
|
|
181
|
-
_globals['_BUILDINGCATALOG']._serialized_start=
|
|
182
|
-
_globals['_BUILDINGCATALOG']._serialized_end=
|
|
183
|
-
_globals['_BUILDINGCATALOGMSG']._serialized_start=
|
|
184
|
-
_globals['_BUILDINGCATALOGMSG']._serialized_end=
|
|
185
|
-
_globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=
|
|
186
|
-
_globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=
|
|
187
|
-
_globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=
|
|
188
|
-
_globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=
|
|
189
|
-
_globals['_HOOKSRUNNING']._serialized_start=
|
|
190
|
-
_globals['_HOOKSRUNNING']._serialized_end=
|
|
191
|
-
_globals['_HOOKSRUNNINGMSG']._serialized_start=
|
|
192
|
-
_globals['_HOOKSRUNNINGMSG']._serialized_end=
|
|
193
|
-
_globals['_FINISHEDRUNNINGSTATS']._serialized_start=
|
|
194
|
-
_globals['_FINISHEDRUNNINGSTATS']._serialized_end=
|
|
195
|
-
_globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=
|
|
196
|
-
_globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=
|
|
197
|
-
_globals['_CONSTRAINTNOTENFORCED']._serialized_start=
|
|
198
|
-
_globals['_CONSTRAINTNOTENFORCED']._serialized_end=
|
|
199
|
-
_globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=
|
|
200
|
-
_globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=
|
|
201
|
-
_globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=
|
|
202
|
-
_globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=
|
|
203
|
-
_globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=
|
|
204
|
-
_globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=
|
|
205
|
-
_globals['_TYPECODENOTFOUND']._serialized_start=
|
|
206
|
-
_globals['_TYPECODENOTFOUND']._serialized_end=
|
|
207
|
-
_globals['_TYPECODENOTFOUNDMSG']._serialized_start=
|
|
208
|
-
_globals['_TYPECODENOTFOUNDMSG']._serialized_end=
|
|
123
|
+
_globals['_SQLQUERYSTATUS']._serialized_end=4847
|
|
124
|
+
_globals['_SQLQUERYSTATUSMSG']._serialized_start=4849
|
|
125
|
+
_globals['_SQLQUERYSTATUSMSG']._serialized_end=4962
|
|
126
|
+
_globals['_SQLCOMMIT']._serialized_start=4964
|
|
127
|
+
_globals['_SQLCOMMIT']._serialized_end=5043
|
|
128
|
+
_globals['_SQLCOMMITMSG']._serialized_start=5045
|
|
129
|
+
_globals['_SQLCOMMITMSG']._serialized_end=5148
|
|
130
|
+
_globals['_COLTYPECHANGE']._serialized_start=5150
|
|
131
|
+
_globals['_COLTYPECHANGE']._serialized_end=5247
|
|
132
|
+
_globals['_COLTYPECHANGEMSG']._serialized_start=5249
|
|
133
|
+
_globals['_COLTYPECHANGEMSG']._serialized_end=5360
|
|
134
|
+
_globals['_SCHEMACREATION']._serialized_start=5362
|
|
135
|
+
_globals['_SCHEMACREATION']._serialized_end=5426
|
|
136
|
+
_globals['_SCHEMACREATIONMSG']._serialized_start=5428
|
|
137
|
+
_globals['_SCHEMACREATIONMSG']._serialized_end=5541
|
|
138
|
+
_globals['_SCHEMADROP']._serialized_start=5543
|
|
139
|
+
_globals['_SCHEMADROP']._serialized_end=5603
|
|
140
|
+
_globals['_SCHEMADROPMSG']._serialized_start=5605
|
|
141
|
+
_globals['_SCHEMADROPMSG']._serialized_end=5710
|
|
142
|
+
_globals['_CACHEACTION']._serialized_start=5713
|
|
143
|
+
_globals['_CACHEACTION']._serialized_end=5935
|
|
144
|
+
_globals['_CACHEACTIONMSG']._serialized_start=5937
|
|
145
|
+
_globals['_CACHEACTIONMSG']._serialized_end=6044
|
|
146
|
+
_globals['_CACHEDUMPGRAPH']._serialized_start=6047
|
|
147
|
+
_globals['_CACHEDUMPGRAPH']._serialized_end=6199
|
|
148
|
+
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_start=6156
|
|
149
|
+
_globals['_CACHEDUMPGRAPH_DUMPENTRY']._serialized_end=6199
|
|
150
|
+
_globals['_CACHEDUMPGRAPHMSG']._serialized_start=6201
|
|
151
|
+
_globals['_CACHEDUMPGRAPHMSG']._serialized_end=6314
|
|
152
|
+
_globals['_ADAPTERREGISTERED']._serialized_start=6316
|
|
153
|
+
_globals['_ADAPTERREGISTERED']._serialized_end=6382
|
|
154
|
+
_globals['_ADAPTERREGISTEREDMSG']._serialized_start=6384
|
|
155
|
+
_globals['_ADAPTERREGISTEREDMSG']._serialized_end=6503
|
|
156
|
+
_globals['_ADAPTERIMPORTERROR']._serialized_start=6505
|
|
157
|
+
_globals['_ADAPTERIMPORTERROR']._serialized_end=6538
|
|
158
|
+
_globals['_ADAPTERIMPORTERRORMSG']._serialized_start=6540
|
|
159
|
+
_globals['_ADAPTERIMPORTERRORMSG']._serialized_end=6661
|
|
160
|
+
_globals['_PLUGINLOADERROR']._serialized_start=6663
|
|
161
|
+
_globals['_PLUGINLOADERROR']._serialized_end=6698
|
|
162
|
+
_globals['_PLUGINLOADERRORMSG']._serialized_start=6700
|
|
163
|
+
_globals['_PLUGINLOADERRORMSG']._serialized_end=6815
|
|
164
|
+
_globals['_NEWCONNECTIONOPENING']._serialized_start=6817
|
|
165
|
+
_globals['_NEWCONNECTIONOPENING']._serialized_end=6914
|
|
166
|
+
_globals['_NEWCONNECTIONOPENINGMSG']._serialized_start=6916
|
|
167
|
+
_globals['_NEWCONNECTIONOPENINGMSG']._serialized_end=7041
|
|
168
|
+
_globals['_CODEEXECUTION']._serialized_start=7043
|
|
169
|
+
_globals['_CODEEXECUTION']._serialized_end=7099
|
|
170
|
+
_globals['_CODEEXECUTIONMSG']._serialized_start=7101
|
|
171
|
+
_globals['_CODEEXECUTIONMSG']._serialized_end=7212
|
|
172
|
+
_globals['_CODEEXECUTIONSTATUS']._serialized_start=7214
|
|
173
|
+
_globals['_CODEEXECUTIONSTATUS']._serialized_end=7268
|
|
174
|
+
_globals['_CODEEXECUTIONSTATUSMSG']._serialized_start=7270
|
|
175
|
+
_globals['_CODEEXECUTIONSTATUSMSG']._serialized_end=7393
|
|
176
|
+
_globals['_CATALOGGENERATIONERROR']._serialized_start=7395
|
|
177
|
+
_globals['_CATALOGGENERATIONERROR']._serialized_end=7432
|
|
178
|
+
_globals['_CATALOGGENERATIONERRORMSG']._serialized_start=7435
|
|
179
|
+
_globals['_CATALOGGENERATIONERRORMSG']._serialized_end=7564
|
|
180
|
+
_globals['_WRITECATALOGFAILURE']._serialized_start=7566
|
|
181
|
+
_globals['_WRITECATALOGFAILURE']._serialized_end=7611
|
|
182
|
+
_globals['_WRITECATALOGFAILUREMSG']._serialized_start=7613
|
|
183
|
+
_globals['_WRITECATALOGFAILUREMSG']._serialized_end=7736
|
|
184
|
+
_globals['_CATALOGWRITTEN']._serialized_start=7738
|
|
185
|
+
_globals['_CATALOGWRITTEN']._serialized_end=7768
|
|
186
|
+
_globals['_CATALOGWRITTENMSG']._serialized_start=7770
|
|
187
|
+
_globals['_CATALOGWRITTENMSG']._serialized_end=7883
|
|
188
|
+
_globals['_CANNOTGENERATEDOCS']._serialized_start=7885
|
|
189
|
+
_globals['_CANNOTGENERATEDOCS']._serialized_end=7905
|
|
190
|
+
_globals['_CANNOTGENERATEDOCSMSG']._serialized_start=7907
|
|
191
|
+
_globals['_CANNOTGENERATEDOCSMSG']._serialized_end=8028
|
|
192
|
+
_globals['_BUILDINGCATALOG']._serialized_start=8030
|
|
193
|
+
_globals['_BUILDINGCATALOG']._serialized_end=8047
|
|
194
|
+
_globals['_BUILDINGCATALOGMSG']._serialized_start=8049
|
|
195
|
+
_globals['_BUILDINGCATALOGMSG']._serialized_end=8164
|
|
196
|
+
_globals['_DATABASEERRORRUNNINGHOOK']._serialized_start=8166
|
|
197
|
+
_globals['_DATABASEERRORRUNNINGHOOK']._serialized_end=8211
|
|
198
|
+
_globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_start=8214
|
|
199
|
+
_globals['_DATABASEERRORRUNNINGHOOKMSG']._serialized_end=8347
|
|
200
|
+
_globals['_HOOKSRUNNING']._serialized_start=8349
|
|
201
|
+
_globals['_HOOKSRUNNING']._serialized_end=8401
|
|
202
|
+
_globals['_HOOKSRUNNINGMSG']._serialized_start=8403
|
|
203
|
+
_globals['_HOOKSRUNNINGMSG']._serialized_end=8512
|
|
204
|
+
_globals['_FINISHEDRUNNINGSTATS']._serialized_start=8514
|
|
205
|
+
_globals['_FINISHEDRUNNINGSTATS']._serialized_end=8598
|
|
206
|
+
_globals['_FINISHEDRUNNINGSTATSMSG']._serialized_start=8600
|
|
207
|
+
_globals['_FINISHEDRUNNINGSTATSMSG']._serialized_end=8725
|
|
208
|
+
_globals['_CONSTRAINTNOTENFORCED']._serialized_start=8727
|
|
209
|
+
_globals['_CONSTRAINTNOTENFORCED']._serialized_end=8787
|
|
210
|
+
_globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_start=8789
|
|
211
|
+
_globals['_CONSTRAINTNOTENFORCEDMSG']._serialized_end=8916
|
|
212
|
+
_globals['_CONSTRAINTNOTSUPPORTED']._serialized_start=8918
|
|
213
|
+
_globals['_CONSTRAINTNOTSUPPORTED']._serialized_end=8979
|
|
214
|
+
_globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_start=8982
|
|
215
|
+
_globals['_CONSTRAINTNOTSUPPORTEDMSG']._serialized_end=9111
|
|
216
|
+
_globals['_TYPECODENOTFOUND']._serialized_start=9113
|
|
217
|
+
_globals['_TYPECODENOTFOUND']._serialized_end=9150
|
|
218
|
+
_globals['_TYPECODENOTFOUNDMSG']._serialized_start=9152
|
|
219
|
+
_globals['_TYPECODENOTFOUNDMSG']._serialized_end=9269
|
|
209
220
|
# @@protoc_insertion_point(module_scope)
|
|
@@ -92,11 +92,14 @@ class SQLConnectionManager(BaseConnectionManager):
|
|
|
92
92
|
cursor = connection.handle.cursor()
|
|
93
93
|
cursor.execute(sql, bindings)
|
|
94
94
|
|
|
95
|
+
result = self.get_response(cursor)
|
|
96
|
+
|
|
95
97
|
fire_event(
|
|
96
98
|
SQLQueryStatus(
|
|
97
|
-
status=str(
|
|
99
|
+
status=str(result),
|
|
98
100
|
elapsed=time.perf_counter() - pre,
|
|
99
101
|
node_info=get_node_info(),
|
|
102
|
+
query_id=result.query_id,
|
|
100
103
|
)
|
|
101
104
|
)
|
|
102
105
|
|
|
@@ -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.8.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
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.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
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/columns.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/freshness.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/indexes.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/metadata.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/relation.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/schema.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/show.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/adapters/timestamps.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/etc/datetime.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.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
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/python_model/python.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/create.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.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.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/rename.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/relations/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.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
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/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.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/any_value.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/array_append.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/array_concat.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/bool_or.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/concat.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/data_types.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/date_spine.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/date_trunc.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/dateadd.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/datediff.sql
RENAMED
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/except.sql
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/intersect.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/last_day.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/length.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/listagg.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/literal.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/position.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/replace.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/right.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/safe_cast.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/macros/utils/split_part.sql
RENAMED
|
File without changes
|
{dbt_adapters-1.8.0 → dbt_adapters-1.10.0}/dbt/include/global_project/tests/generic/builtin.sql
RENAMED
|
File without changes
|
|
File without changes
|