From 3bfab12f2e8b2f7060869e6a3826325587510c6c Mon Sep 17 00:00:00 2001 From: Suhas Thalanki Date: Wed, 11 Jun 2025 15:54:35 -0700 Subject: [PATCH] adding dblink to build-tools image for use in regression tests --- Makefile | 2 ++ build-tools.Dockerfile | 1 + 2 files changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 0911465fb8..60827d94fc 100644 --- a/Makefile +++ b/Makefile @@ -166,6 +166,8 @@ postgres-%: postgres-configure-% \ $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/amcheck install +@echo "Compiling test_decoding $*" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/test_decoding install + +@echo "Compiling dblink $*" + $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/$*/contrib/dblink install .PHONY: postgres-clean-% postgres-clean-%: diff --git a/build-tools.Dockerfile b/build-tools.Dockerfile index f97f04968e..3307fc39bb 100644 --- a/build-tools.Dockerfile +++ b/build-tools.Dockerfile @@ -144,6 +144,7 @@ RUN set -e \ openssh-client \ parallel \ pkg-config \ + postgresql-contrib \ unzip \ wget \ xz-utils \