mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
e472ce9624
The new pg_check_visible() and pg_check_frozen() functions can be used to verify that the visibility map bits for a relation's data pages match the actual state of the tuples on those pages. Amit Kapila and Robert Haas, reviewed (in earlier versions) by Andres Freund. Additional testing help by Thomas Munro.
20 lines
486 B
Makefile
20 lines
486 B
Makefile
# contrib/pg_visibility/Makefile
|
|
|
|
MODULE_big = pg_visibility
|
|
OBJS = pg_visibility.o $(WIN32RES)
|
|
|
|
EXTENSION = pg_visibility
|
|
DATA = pg_visibility--1.1.sql pg_visibility--1.0--1.1.sql
|
|
PGFILEDESC = "pg_visibility - page visibility information"
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_visibility
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|