gitextract_za4id763/ ├── .changes/ │ ├── 0.0.0.md │ ├── 1.10.0/ │ │ └── Features-20251210-194211.yaml │ ├── 1.10.0.md │ ├── 1.10.1/ │ │ └── Dependencies-20260115-092226.yaml │ ├── 1.10.1.md │ ├── header.tpl.md │ └── unreleased/ │ └── .gitkeep ├── .changie.yaml ├── .flake8 ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── bot-changelog.yml │ ├── changelog-existence.yml │ ├── ci.yml │ ├── release.yml │ ├── security.yml │ └── version-bump.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── Makefile ├── README.md ├── dbt/ │ ├── adapters/ │ │ └── trino/ │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── catalogs/ │ │ │ ├── __init__.py │ │ │ ├── _relation.py │ │ │ └── _trino_catalog_metastore.py │ │ ├── column.py │ │ ├── connections.py │ │ ├── constants.py │ │ ├── impl.py │ │ ├── parse_model.py │ │ └── relation.py │ └── include/ │ └── trino/ │ ├── __init__.py │ ├── dbt_project.yml │ ├── macros/ │ │ ├── adapters.sql │ │ ├── apply_grants.sql │ │ ├── catalog.sql │ │ ├── materializations/ │ │ │ ├── incremental.sql │ │ │ ├── materialized_view.sql │ │ │ ├── seeds/ │ │ │ │ └── helpers.sql │ │ │ ├── snapshot.sql │ │ │ ├── table.sql │ │ │ └── view.sql │ │ └── utils/ │ │ ├── any_value.sql │ │ ├── array_append.sql │ │ ├── array_concat.sql │ │ ├── array_construct.sql │ │ ├── bool_or.sql │ │ ├── datatypes.sql │ │ ├── date_spine.sql │ │ ├── date_trunc.sql │ │ ├── dateadd.sql │ │ ├── datediff.sql │ │ ├── hash.sql │ │ ├── listagg.sql │ │ ├── right.sql │ │ ├── safe_cast.sql │ │ ├── split_part.sql │ │ └── timestamps.sql │ └── sample_profiles.yml ├── dev_requirements.txt ├── docker/ │ ├── init_starburst.bash │ ├── init_trino.bash │ ├── remove_starburst.bash │ ├── remove_trino.bash │ ├── starburst/ │ │ ├── catalog/ │ │ │ ├── delta.properties │ │ │ ├── hive.properties │ │ │ ├── iceberg.properties │ │ │ ├── memory.properties │ │ │ ├── postgresql.properties │ │ │ └── tpch.properties │ │ └── etc/ │ │ ├── config.properties │ │ ├── jvm.config │ │ └── node.properties │ └── trino/ │ ├── catalog/ │ │ ├── delta.properties │ │ ├── hive.properties │ │ ├── iceberg.properties │ │ ├── memory.properties │ │ ├── postgresql.properties │ │ └── tpch.properties │ └── etc/ │ ├── config.properties │ ├── jvm.config │ └── node.properties ├── docker-compose-starburst.yml ├── docker-compose-trino.yml ├── mypy.ini ├── pytest.ini ├── setup.py ├── tests/ │ ├── conftest.py │ ├── functional/ │ │ └── adapter/ │ │ ├── behavior_flags/ │ │ │ └── test_require_certificate_validation.py │ │ ├── catalog_integrations/ │ │ │ ├── fixtures.py │ │ │ └── test_catalog_integration.py │ │ ├── column_types/ │ │ │ ├── fixtures.py │ │ │ └── test_column_types.py │ │ ├── constraints/ │ │ │ ├── fixtures.py │ │ │ └── test_constraints.py │ │ ├── dbt_clone/ │ │ │ └── test_dbt_clone.py │ │ ├── dbt_debug/ │ │ │ └── test_dbt_debug.py │ │ ├── dbt_show/ │ │ │ └── test_dbt_show.py │ │ ├── empty/ │ │ │ └── test_empty.py │ │ ├── fixture_datediff.py │ │ ├── hooks/ │ │ │ ├── data/ │ │ │ │ ├── seed_model.sql │ │ │ │ └── seed_run.sql │ │ │ ├── test_hooks_delete.py │ │ │ ├── test_model_hooks.py │ │ │ └── test_run_hooks.py │ │ ├── materialization/ │ │ │ ├── fixtures.py │ │ │ ├── test_incremental_delete_insert.py │ │ │ ├── test_incremental_merge.py │ │ │ ├── test_incremental_microbatch.py │ │ │ ├── test_incremental_predicates.py │ │ │ ├── test_incremental_schema.py │ │ │ ├── test_incremental_views_enabled.py │ │ │ ├── test_materialized_view.py │ │ │ ├── test_on_table_exists.py │ │ │ ├── test_prepared_statements.py │ │ │ ├── test_snapshot.py │ │ │ └── test_view_security.py │ │ ├── materialized_view_tests/ │ │ │ ├── test_materialized_view_dbt_core.py │ │ │ └── utils.py │ │ ├── persist_docs/ │ │ │ ├── fixtures.py │ │ │ └── test_persist_docs.py │ │ ├── show/ │ │ │ ├── fixtures.py │ │ │ └── test_show.py │ │ ├── simple_seed/ │ │ │ ├── seed_bom.csv │ │ │ ├── seeds.py │ │ │ └── test_seed.py │ │ ├── store_failures/ │ │ │ ├── fixtures.py │ │ │ └── test_store_failures.py │ │ ├── test_basic.py │ │ ├── test_caching.py │ │ ├── test_changing_relation_type.py │ │ ├── test_concurrency.py │ │ ├── test_custom_schema.py │ │ ├── test_ephemeral.py │ │ ├── test_get_incremental_tmp_relation_type_macro.py │ │ ├── test_grants.py │ │ ├── test_query_comments.py │ │ ├── test_quote_policy.py │ │ ├── test_sample_mode.py │ │ ├── test_seeds_column_types_overrides.py │ │ ├── test_session_property.py │ │ ├── test_simple_copy.py │ │ ├── test_simple_snapshot.py │ │ ├── test_sql_status_output.py │ │ ├── test_table_properties.py │ │ ├── unit_testing/ │ │ │ └── test_unit_testing.py │ │ └── utils/ │ │ ├── fixture_date_spine.py │ │ ├── fixture_get_intervals_between.py │ │ ├── test_data_types.py │ │ ├── test_date_spine.py │ │ ├── test_get_intervals_between.py │ │ ├── test_timestamps.py │ │ └── test_utils.py │ └── unit/ │ ├── __init__.py │ ├── test_adapter.py │ └── utils.py └── tox.ini