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 drivers/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.3"
services:
db:
image: apache/age:dev_snapshot_master
image: apache/age:dev_snapshot_PG19
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=agens
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public void beforeAll() throws Exception {
String CORRECT_DB_PASSWORDS = "postgres";

agensGraphContainer = new GenericContainer<>(DockerImageName
.parse("apache/age:dev_snapshot_master"))
.parse("apache/age:dev_snapshot_PG19"))
.withEnv("POSTGRES_PASSWORD", CORRECT_DB_PASSWORDS)
.withExposedPorts(5432)
.waitingFor(Wait.forLogMessage(".*database system is ready to accept connections.*\\n", 2)
Expand Down
2 changes: 1 addition & 1 deletion drivers/nodejs/test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const config = {
const testGraphName = 'age_test'

// DESIGN NOTE: All test suites use { createExtension: false } intentionally.
// The CI Docker image (apache/age:dev_snapshot_master) has the AGE extension
// The CI Docker image (apache/age:dev_snapshot_PG19) has the AGE extension
// pre-installed, matching the GitHub Actions workflow. Using createExtension: false
// is the correct security default — auto-creating extensions requires SUPERUSER
// privileges and conflates extension lifecycle management with session setup.
Expand Down
Loading