1 2 3 4 5 6 7 8 9 10
|
--- a/Makefile
+++ b/Makefile
@@ -147,3 +147,7 @@ $(age_sql):
src/backend/parser/ag_scanner.c: FLEX_NO_BACKUP=yes
installcheck: export LC_COLLATE=C
+
+# Set extension_destdir/dynamic_library_path
+# Set max_parallel_workers to suppress a "CONTEXT: parallel worker" in regression tests
+export PGOPTIONS = -cextension_destdir=$(CURDIR)/debian/postgresql-$(MAJORVERSION)-age -cdynamic_library_path=$(CURDIR)/debian/postgresql-$(MAJORVERSION)-age/usr/lib/postgresql/$(MAJORVERSION)/lib:/usr/lib/postgresql/$(MAJORVERSION)/lib -cmax_parallel_workers=0
|