File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ ARG BUILD_TAGS=""
1212ARG TARGETARCH
1313ARG DUCKDB_EXTENSION_VERSION=1.5.2
1414ARG HTTPFS_EXTENSION_TAG=v1.5.2-stoi-fix
15- ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.1
15+ ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.2
1616ARG DUCKDB_EXTENSION_REPOSITORY=https://extensions.duckdb.org
1717ARG DUCKDB_NIGHTLY_EXTENSION_REPOSITORY=http://nightly-extensions.duckdb.org
1818RUN CGO_ENABLED=1 go build -tags "${BUILD_TAGS}" -ldflags "-X main.version=${VERSION} -X main.commit=${COMMIT} -X main.date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" -o duckgres .
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ RUN go mod download
5050
5151ARG DUCKDB_EXTENSION_VERSION=1.5.2
5252ARG HTTPFS_EXTENSION_TAG=v1.5.2-stoi-fix
53- ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.1
53+ ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.2
5454ARG DUCKDB_EXTENSION_REPOSITORY=https://extensions.duckdb.org
5555ARG DUCKDB_NIGHTLY_EXTENSION_REPOSITORY=http://nightly-extensions.duckdb.org
5656
Original file line number Diff line number Diff line change @@ -189,11 +189,11 @@ func TestK8sSharedWarmWorkerActivation(t *testing.T) {
189189}
190190
191191// expectedDucklakeExtensionVersion is the short SHA of the commit
192- // PostHog/ducklake's v1.0-posthog.1 tag points at. DuckDB's
192+ // PostHog/ducklake's v1.0-posthog.2 tag points at. DuckDB's
193193// EXT_VERSION_DUCKLAKE macro embeds this string at build time and exposes
194194// it via duckdb_extensions().extension_version. Bump this in lock-step
195195// with DUCKLAKE_EXTENSION_TAG in Dockerfile / Dockerfile.worker.
196- const expectedDucklakeExtensionVersion = "90dc1f24 "
196+ const expectedDucklakeExtensionVersion = "4a9d2f00 "
197197
198198// TestK8sDucklakeExtensionIsBundledFork asserts the worker pods load the
199199// PostHog ducklake fork bundled by Dockerfile.worker, not the upstream
@@ -212,7 +212,7 @@ func TestK8sDucklakeExtensionIsBundledFork(t *testing.T) {
212212 t .Fatalf ("query ducklake extension_version: %v" , err )
213213 }
214214 if version != expectedDucklakeExtensionVersion {
215- t .Fatalf ("ducklake extension_version = %q, want %q (PostHog fork v1.0-posthog.1 ). " +
215+ t .Fatalf ("ducklake extension_version = %q, want %q (PostHog fork v1.0-posthog.2 ). " +
216216 "If the bundled fork was upgraded, update expectedDucklakeExtensionVersion alongside DUCKLAKE_EXTENSION_TAG." ,
217217 version , expectedDucklakeExtensionVersion )
218218 }
You can’t perform that action at this time.
0 commit comments