Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This repository represents a fork of the [dbt-presto](https://github.com/dbt-lab

### Compatibility

This dbt plugin has been tested against `Trino` version `403`, `Starburst Enterprise` version `402-e.0` and `Starburst Galaxy`.
This dbt plugin has been tested against `Trino` version `405`, `Starburst Enterprise` version `402-e.0` and `Starburst Galaxy`.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion docker-compose-trino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
trino:
ports:
- "8080:8080"
image: "trinodb/trino:403"
image: "trinodb/trino:405"
volumes:
- ./docker/trino/etc:/usr/lib/trino/etc:ro
- ./docker/trino/catalog:/etc/trino/catalog
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,11 +140,9 @@ class TestDeltaIncrementalMerge(TrinoIncrementalUniqueKey):
def project_config_update(self):
return {
"name": "incremental",
# TODO: remove `views_enabled` when https://github.com/trinodb/trino/pull/11763 is merged
"models": {
"+on_table_exists": "drop",
"+incremental_strategy": "merge",
"+views_enabled": False,
},
"seeds": {"incremental": {"seed": {"+column_types": {"some_date": "date"}}}},
}
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,9 @@ class TestDeltaOnSchemaChange(OnSchemaChangeBase):
def project_config_update(self):
return {
"name": "on_schema_change_delta",
# TODO: remove views_enabled when https://github.com/trinodb/trino/pull/11763 is merged
"models": {
"+on_table_exists": "drop",
"+incremental_strategy": "merge",
"+views_enabled": False,
},
}

Expand Down