From 130798e0265838399f38906f154a50b40b4679d4 Mon Sep 17 00:00:00 2001 From: Konstantin Knizhnik Date: Tue, 18 Oct 2022 10:47:27 +0300 Subject: [PATCH] Use prefetch in pg_prewarm extension --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 738a45fd5e..4f51e573ae 100644 --- a/Makefile +++ b/Makefile @@ -111,6 +111,8 @@ postgres-v14: postgres-v14-configure \ $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v14 MAKELEVEL=0 install +@echo "Compiling libpq v14" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v14/src/interfaces/libpq install + +@echo "Compiling pg_prewarm v14" + $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v14/contrib/pg_prewarm install +@echo "Compiling pg_buffercache v14" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v14/contrib/pg_buffercache install +@echo "Compiling pageinspect v14" @@ -123,6 +125,8 @@ postgres-v15: postgres-v15-configure \ $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v15 MAKELEVEL=0 install +@echo "Compiling libpq v15" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v15/src/interfaces/libpq install + +@echo "Compiling pg_prewarm v15" + $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v15/contrib/pg_prewarm install +@echo "Compiling pg_buffercache v15" $(MAKE) -C $(POSTGRES_INSTALL_DIR)/build/v15/contrib/pg_buffercache install +@echo "Compiling pageinspect v15"