mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 05:21:27 +03:00
This module provides SQL functions that allow to inspect logical decoding components. It currently allows to inspect the contents of serialized logical snapshots of a running database cluster, which is useful for debugging or educational purposes. Author: Bertrand Drouvot Reviewed-by: Amit Kapila, Shveta Malik, Peter Smith, Peter Eisentraut Reviewed-by: David G. Johnston Discussion: https://postgr.es/m/ZscuZ92uGh3wm4tW%40ip-10-97-1-34.eu-west-3.compute.internal
32 lines
824 B
Makefile
32 lines
824 B
Makefile
# contrib/pg_logicalinspect/Makefile
|
|
|
|
MODULE_big = pg_logicalinspect
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
pg_logicalinspect.o
|
|
PGFILEDESC = "pg_logicalinspect - functions to inspect logical decoding components"
|
|
|
|
EXTENSION = pg_logicalinspect
|
|
DATA = pg_logicalinspect--1.0.sql
|
|
|
|
EXTRA_INSTALL = contrib/test_decoding
|
|
|
|
ISOLATION = logical_inspect
|
|
|
|
ISOLATION_OPTS = --temp-config $(top_srcdir)/contrib/pg_logicalinspect/logicalinspect.conf
|
|
|
|
# Disabled because these tests require "wal_level=logical", which
|
|
# some installcheck users do not have (e.g. buildfarm clients).
|
|
NO_INSTALLCHECK = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_logicalinspect
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|