Damian Owsianny
Damian Owsianny
In this draft PR #310 3 possible approaches of handling this issue were presented. All of them were thoroughly discussed. As a result, we decided that the best approach is...
I'm also interested in this feature
@hashhar I've adjusted to all your comments, PTAL
The reason is that `from_description` should return `data_type` and `char_size` (or `scale` and `precision`) as separate tuple elements. So, if [raw_data_type](https://github.com/starburstdata/dbt-trino/blob/v1.4.0/dbt/adapters/trino/column.py#L23) argument is **_timestamp(6) with time zone_**, this method returns...
So do you mean to extend [this condition](https://github.com/starburstdata/dbt-trino/blob/v1.4.0/dbt/adapters/trino/column.py#L25) to sth like: ```python if raw_data_type.startswith(("array", "map", "row", "date", "time", "interval", "boolean")): return cls(name, raw_data_type) ``` @mdesmet?
Currently, the best solution would be to install additional package - [trino_utils](https://hub.getdbt.com/starburstdata/trino_utils/latest/), which provides a Trino-compatible implementation of [get_tables_by_pattern_sql macro](https://github.com/starburstdata/dbt-trino-utils/blob/0.6.0/macros/dbt_utils/sql/get_tables_by_pattern_sql.sql). Please install `trino_utils` package according to [Installation Instructions](https://hub.getdbt.com/starburstdata/trino_utils/latest/#usage), and it...
Could you provide the exact `dbt-trino` version that you use? If possible, please provide the output of the `dbt debug` command; it will give us all the basic information.
@james-long-mx Thank you for raising this issue and for your proposed solution. We are aware of the issue with location and are researching the best possible way to address it....
Released https://github.com/starburstdata/dbt-trino/releases/tag/v1.8.0b1. Waiting for https://github.com/dbt-labs/dbt-adapters final release
dbt-trino [1.8.0](https://github.com/starburstdata/dbt-trino/blob/v1.8.0/CHANGELOG.md) was released. It has been successfully refactored to use the `dbt-adapters` interface layer.