From aadbdf19d6423fed57f685e19c6f68db9b682d9a Mon Sep 17 00:00:00 2001 From: BodoBolero Date: Sun, 19 Jan 2025 18:39:15 +0100 Subject: [PATCH] previous commit caused compile errors --- compute/compute-node.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute/compute-node.Dockerfile b/compute/compute-node.Dockerfile index 3641b5c34b..86fc77b37c 100644 --- a/compute/compute-node.Dockerfile +++ b/compute/compute-node.Dockerfile @@ -1133,7 +1133,7 @@ RUN git clone --depth 1 --branch v0.2.0 https://github.com/duckdb/pg_duckdb.git cd third_party/duckdb && \ patch -p1 < /duckdb-v1-1-3.patch && \ cd ../.. && \ - CORE_EXTENSIONS='autocomplete;httpfs;icu;json' make install -j $(getconf _NPROCESSORS_ONLN) && \ + make install -j $(getconf _NPROCESSORS_ONLN) && \ echo 'trusted = true' >> /usr/local/pgsql/share/extension/pg_duckdb.control && \ file=/usr/local/pgsql/share/extension/pg_duckdb--0.1.0--0.2.0.sql && \ echo 'GRANT ALL ON FUNCTION duckdb.cache(TEXT, TEXT) TO neon_superuser;' >> $file && \