├── .github ├── dependabot.yml └── workflows │ ├── integration-tests-azure.yml │ └── release-version.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── SECURITY.md ├── dbt ├── __init__.py ├── adapters │ └── synapse │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── relation_configs │ │ ├── __init__.py │ │ ├── base.py │ │ └── policies.py │ │ ├── synapse_adapter.py │ │ ├── synapse_column.py │ │ ├── synapse_connection_manager.py │ │ ├── synapse_credentials.py │ │ └── synapse_relation.py └── include │ └── synapse │ ├── __init__.py │ ├── dbt_project.yml │ └── macros │ ├── adapters │ ├── catalog.sql │ ├── columns.sql │ ├── indexes.sql │ ├── metadata.sql │ ├── persist_docs.sql │ ├── relation.sql │ ├── replace.sql │ ├── schema.sql │ └── show.sql │ ├── materializations │ ├── models │ │ ├── materialized_view │ │ │ ├── create_materialized_view_as.sql │ │ │ └── materialized_view.sql │ │ ├── table │ │ │ ├── create_table_as.sql │ │ │ └── create_table_constraints.sql │ │ └── view │ │ │ └── create_view_as.sql │ ├── seeds │ │ ├── helpers.sql │ │ └── str_replace.sql │ ├── snapshots │ │ └── snapshot.sql │ └── tests │ │ ├── helpers.sql │ │ └── test.sql │ └── utils │ ├── date_spine.sql │ ├── generate_series.sql │ └── split_part.sql ├── dev_requirements.txt ├── devops ├── create_sql_users.sql └── synapse.py ├── pytest.ini ├── setup.py ├── test.env.sample └── tests ├── conftest.py └── functional └── adapter ├── data ├── seed_bom.csv ├── seed_model.sql └── seed_run.sql ├── test_aliases.py ├── test_basic.py ├── test_caching.py ├── test_changing_relation_type.py ├── test_column_types.py ├── test_concurrency.py ├── test_constraints.py ├── test_copy_uppercase.py ├── test_data_types.py ├── test_date_spine.py ├── test_dbt_show.py ├── test_debug.py ├── test_docs.py ├── test_ephemeral.py ├── test_equals.py ├── test_generate_series.py ├── test_get_intervals_between.py ├── test_get_last_relation_modified.py ├── test_get_powers_of_two.py ├── test_grants.py ├── test_incremental.py ├── test_list_relations_without_caching.py ├── test_materialized_views.py ├── test_model_hooks.py ├── test_new_project.py ├── test_null_compare.py ├── test_persist_docs.py ├── test_provision_users.py ├── test_query_comment.py ├── test_run_hooks.py ├── test_schema.py ├── test_seed.py ├── test_simple_copy.py ├── test_sources.py ├── test_store_test_failures.py ├── test_timestamps.py ├── test_utils.py └── test_validate_sql.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/integration-tests-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/.github/workflows/integration-tests-azure.yml -------------------------------------------------------------------------------- /.github/workflows/release-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/.github/workflows/release-version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.9 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/SECURITY.md -------------------------------------------------------------------------------- /dbt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/__init__.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/__init__.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/__version__.py: -------------------------------------------------------------------------------- 1 | version = "1.8.4" 2 | -------------------------------------------------------------------------------- /dbt/adapters/synapse/relation_configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/relation_configs/__init__.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/relation_configs/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/relation_configs/base.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/relation_configs/policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/relation_configs/policies.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/synapse_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/synapse_adapter.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/synapse_column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/synapse_column.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/synapse_connection_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/synapse_connection_manager.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/synapse_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/synapse_credentials.py -------------------------------------------------------------------------------- /dbt/adapters/synapse/synapse_relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/adapters/synapse/synapse_relation.py -------------------------------------------------------------------------------- /dbt/include/synapse/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | PACKAGE_PATH = os.path.dirname(__file__) 4 | -------------------------------------------------------------------------------- /dbt/include/synapse/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/dbt_project.yml -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/catalog.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/catalog.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/columns.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/indexes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/indexes.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/metadata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/metadata.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/persist_docs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/persist_docs.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/relation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/relation.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/replace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/replace.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/schema.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/adapters/show.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/adapters/show.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/models/materialized_view/create_materialized_view_as.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/models/materialized_view/create_materialized_view_as.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/models/materialized_view/materialized_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/models/materialized_view/materialized_view.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/models/table/create_table_as.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/models/table/create_table_as.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/models/table/create_table_constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/models/table/create_table_constraints.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/models/view/create_view_as.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/models/view/create_view_as.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/seeds/helpers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/seeds/helpers.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/seeds/str_replace.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/seeds/str_replace.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/snapshots/snapshot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/snapshots/snapshot.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/tests/helpers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/tests/helpers.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/materializations/tests/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/materializations/tests/test.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/utils/date_spine.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/utils/date_spine.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/utils/generate_series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/utils/generate_series.sql -------------------------------------------------------------------------------- /dbt/include/synapse/macros/utils/split_part.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dbt/include/synapse/macros/utils/split_part.sql -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /devops/create_sql_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/devops/create_sql_users.sql -------------------------------------------------------------------------------- /devops/synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/devops/synapse.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/setup.py -------------------------------------------------------------------------------- /test.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/test.env.sample -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/functional/adapter/data/seed_bom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/data/seed_bom.csv -------------------------------------------------------------------------------- /tests/functional/adapter/data/seed_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/data/seed_model.sql -------------------------------------------------------------------------------- /tests/functional/adapter/data/seed_run.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/data/seed_run.sql -------------------------------------------------------------------------------- /tests/functional/adapter/test_aliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_aliases.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_basic.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_caching.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_changing_relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_changing_relation_type.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_column_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_column_types.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_concurrency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_concurrency.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_constraints.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_copy_uppercase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_copy_uppercase.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_data_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_data_types.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_date_spine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_date_spine.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_dbt_show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_dbt_show.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_debug.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_docs.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_ephemeral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_ephemeral.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_equals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_equals.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_generate_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_generate_series.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_get_intervals_between.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_get_intervals_between.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_get_last_relation_modified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_get_last_relation_modified.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_get_powers_of_two.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_get_powers_of_two.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_grants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_grants.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_incremental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_incremental.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_list_relations_without_caching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_list_relations_without_caching.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_materialized_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_materialized_views.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_model_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_model_hooks.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_new_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_new_project.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_null_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_null_compare.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_persist_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_persist_docs.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_provision_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_provision_users.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_query_comment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_query_comment.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_run_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_run_hooks.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_schema.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_seed.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_simple_copy.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_sources.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_store_test_failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_store_test_failures.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_timestamps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_timestamps.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_utils.py -------------------------------------------------------------------------------- /tests/functional/adapter/test_validate_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dbt-synapse/HEAD/tests/functional/adapter/test_validate_sql.py --------------------------------------------------------------------------------