mirror of
https://github.com/postgres/postgres.git
synced 2026-04-08 02:35:51 -04:00
The associated value should look like something that could be part of an EXPLAIN options list, but restricted to EXPLAIN options added by extensions. For example, if pg_overexplain is loaded, you could set auto_explain.log_extension_options = 'DEBUG, RANGE_TABLE'. You can also specify arguments to these options in the same manner as normal e.g. 'DEBUG 1, RANGE_TABLE false'. Reviewed-by: Matheus Alcantara <matheusssilv97@gmail.com> Reviewed-by: Lukas Fittl <lukas@fittl.com> Discussion: http://postgr.es/m/CA+Tgmob-0W8306mvrJX5Urtqt1AAasu8pi4yLrZ1XfwZU-Uj1w@mail.gmail.com
23 lines
506 B
Makefile
23 lines
506 B
Makefile
# contrib/auto_explain/Makefile
|
|
|
|
MODULE_big = auto_explain
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
auto_explain.o
|
|
PGFILEDESC = "auto_explain - logging facility for execution plans"
|
|
|
|
EXTRA_INSTALL = contrib/pg_overexplain
|
|
REGRESS = alter_reset extension_options
|
|
|
|
TAP_TESTS = 1
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/auto_explain
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|