Обсуждение: [HACKERS] contrib/bloom wal-check not run by default

Поиск
Список
Период
Сортировка

[HACKERS] contrib/bloom wal-check not run by default

От
Peter Eisentraut
Дата:
Why $subject?

Does it just need to be wired into the makefiles a bit better?

-- 
Peter Eisentraut              http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services



Re: [HACKERS] contrib/bloom wal-check not run by default

От
Michael Paquier
Дата:
On Tue, Apr 11, 2017 at 12:14 AM, Peter Eisentraut
<peter.eisentraut@2ndquadrant.com> wrote:
> Why $subject?
>
> Does it just need to be wired into the makefiles a bit better?

Looks like an oversight to me. I would suggest changing the Makefile like that:
diff --git a/contrib/bloom/Makefile b/contrib/bloom/Makefile
index 13bd397b70..834ab18bdc 100644
--- a/contrib/bloom/Makefile
+++ b/contrib/bloom/Makefile
@@ -20,5 +20,7 @@ include $(top_builddir)/src/Makefile.globalinclude $(top_srcdir)/contrib/contrib-global.mkendif

-wal-check: temp-install
+check: prove-check
+
+prove-check:   $(prove_check)
-- 
Michael