database · inferred from evidence
Trino
A distributed SQL query engine for big data.
- 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