library · inferred from evidence
dbt-trino
A dbt adapter for Trino, enabling dbt to work with Trino databases.
- Fix dbt-trino 'found two models with the name' compilation error
Every `dbt run --models +MY_MODEL+` died with `Compilation Error: dbt found two models with the name` on dbt-core 1.5.0. It is not a dbt-trino problem: the fix is `pip install dbt-core==1.5.2`, which is the release the dbt-trino maintainer
- Fix dbt-trino transaction timeout on queries longer than 5 minutes
Any dbt model taking over 5 minutes on Trino failed at commit time. The thread dug in and found dbt-trino was opening transactions that did nothing (auto-commit mode already commits each query), and Trino's 5-minute `transaction.idle-timeou
- Fix dbt-trino snapshot failing to create __dbt_tmp after first run
My snapshot ran once and then every rerun failed creating `__dbt_tmp`. A dbt-trino maintainer confirmed the cause: with an explicit `location` property, the temp table targets the same location as the snapshot table, which Trino rejects. Re