mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
6ec9e9975e
This prevents false-positive reports about "the first child of leftmost target page is not leftmost of its level", "block %u is not leftmost" and "left link/right link pair". They appeared if amcheck ran before VACUUM cleaned things, after a cluster exited recovery between the first-stage and second-stage WAL records of a deletion. Back-patch to v11 (all supported versions). Reviewed by Peter Geoghegan. Discussion: https://postgr.es/m/20231005025232.c7.nmisch@google.com
28 lines
642 B
Makefile
28 lines
642 B
Makefile
# contrib/amcheck/Makefile
|
|
|
|
MODULE_big = amcheck
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
verify_heapam.o \
|
|
verify_nbtree.o
|
|
|
|
EXTENSION = amcheck
|
|
DATA = amcheck--1.3--1.4.sql amcheck--1.2--1.3.sql amcheck--1.1--1.2.sql amcheck--1.0--1.1.sql amcheck--1.0.sql
|
|
PGFILEDESC = "amcheck - function for verifying relation integrity"
|
|
|
|
REGRESS = check check_btree check_heap
|
|
|
|
EXTRA_INSTALL = contrib/pg_walinspect
|
|
TAP_TESTS = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/amcheck
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|