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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -883,6 +883,7 @@ jobs:
- suite-delta-lake-databricks143
- suite-delta-lake-databricks154
- suite-delta-lake-databricks164
- suite-exasol
- suite-ranger
- suite-gcs
- suite-clients
Expand Down
2 changes: 1 addition & 1 deletion docs/src/main/sphinx/connector/exasol.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The Exasol connector allows querying an [Exasol](https://www.exasol.com/) databa

To connect to Exasol, you need:

* Exasol database version 7.1 or higher.
* Exasol database version 8.34.0 or higher.
* Network access from the Trino coordinator and workers to Exasol.
Port 8563 is the default port.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class TestingExasolServer

public TestingExasolServer()
{
container = new ExasolContainer<>("8.32.0")
container = new ExasolContainer<>("8.34.0")
.withExposedPorts(8563)
.withRequiredServices(ExasolService.JDBC);
cleanup = startOrReuse(container);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public void extendEnvironment(Builder builder)

private DockerContainer createExasol()
{
DockerContainer container = new DockerContainer("exasol/docker-db:8.27.0", "exasol")
DockerContainer container = new DockerContainer("exasol/docker-db:8.34.0", "exasol")
.withStartupCheckStrategy(new IsRunningStartupCheckStrategy())
.waitingFor(forSelectedPorts(EXASOL_PORT));
container.setPrivilegedMode(true);
Expand Down
Loading