Skip to content
Open
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ jobs:
- suite-delta-lake-databricks154
- suite-delta-lake-databricks164
- suite-delta-lake-databricks173
#- suite-exasol
- suite-exasol
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you

- suite-ranger
- suite-gcs
- suite-hive4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ public class TestingExasolServer

public TestingExasolServer()
{
container = new ExasolContainer<>("8.34.0")
container = new ExasolContainer<>("2025.1.3")
.withExposedPorts(8563)
.withRequiredServices(ExasolService.JDBC);
.withRequiredServices(ExasolService.JDBC)
.withEnv("COSLWD_ENABLED", "1");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please add a code comment what COSLWD_ENABLED=1 is for

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also, in update containers, disable rsyslogd commit
can you maybe change title to sth like Update Exasol container [...]

cleanup = startOrReuse(container);
executeAsSys(format("CREATE USER %s IDENTIFIED BY \"%s\"", TEST_USER, TEST_PASSWORD));
executeAsSys("GRANT CREATE SESSION TO " + TEST_USER);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,10 @@ public void extendEnvironment(Builder builder)

private DockerContainer createExasol()
{
DockerContainer container = new DockerContainer("exasol/docker-db:8.34.0", "exasol")
DockerContainer container = new DockerContainer("exasol/docker-db:2025.1.3", "exasol")
.withStartupCheckStrategy(new IsRunningStartupCheckStrategy())
.waitingFor(forSelectedPorts(EXASOL_PORT));
.waitingFor(forSelectedPorts(EXASOL_PORT))
.withEnv("COSLWD_ENABLED", "1");
container.setPrivilegedMode(true);
portBinder.exposePort(container, EXASOL_PORT);
return container;
Expand Down
Loading