postgresql/src/backend/utils
2021-05-12 07:42:51 +02:00
..
activity Fix interaction of log_line_prefix's query_id and log_statement 2021-04-20 12:57:59 -04:00
adt Refactor some error messages for easier translation 2021-05-12 07:42:51 +02:00
cache Revert per-index collation version tracking feature. 2021-05-07 21:10:11 +12:00
error adjust query id feature to use pg_stat_activity.query_id 2021-04-20 12:22:26 -04:00
fmgr Fix some comments in fmgr.c 2021-04-23 13:34:02 +09:00
hash Update copyright for 2021 2021-01-02 13:06:25 -05:00
init Add function to log the memory contexts of specified backend process. 2021-04-06 13:44:15 +09:00
mb Add 'noError' argument to encoding conversion functions. 2021-04-01 11:45:22 +03:00
misc Revert recovery prefetching feature. 2021-05-10 16:06:09 +12:00
mmgr Add function to log the memory contexts of specified backend process. 2021-04-06 13:44:15 +09:00
resowner Refactor HMAC implementations 2021-04-03 17:30:49 +09:00
sort Use sort_template.h for qsort_tuple() and qsort_ssup(). 2021-03-03 17:02:32 +13:00
time Sanitize the term "combo CID" in code comments 2021-03-25 16:08:03 +09:00
.gitignore Rearrange makefile rules for running Gen_fmgrtab.pl. 2018-05-03 17:54:18 -04:00
errcodes.txt Rethink SQLSTATE code for ERRCODE_IDLE_SESSION_TIMEOUT. 2021-01-11 14:53:42 -05:00
Gen_dummy_probes.pl Emit dummy statements for probes.d probes when disabled 2021-05-10 11:40:03 +02:00
Gen_dummy_probes.pl.prolog Tweak generation of Gen_dummy_probes.pl 2021-05-11 20:02:02 -04:00
Gen_dummy_probes.sed Emit dummy statements for probes.d probes when disabled 2021-05-10 11:40:03 +02:00
Gen_fmgrtab.pl Update copyright for 2021 2021-01-02 13:06:25 -05:00
generate-errcodes.pl Update copyright for 2021 2021-01-02 13:06:25 -05:00
Makefile Tweak generation of Gen_dummy_probes.pl 2021-05-11 20:02:02 -04:00
probes.d Update copyright for 2021 2021-01-02 13:06:25 -05:00
README.Gen_dummy_probes Tweak generation of Gen_dummy_probes.pl 2021-05-11 20:02:02 -04:00

# Generating dummy probes

If Postgres isn't configured with dtrace enabled, we need to generate
dummy probes for the entries in probes.d, that do nothing.

This is accomplished in Unix via the sed script `Gen_dummy_probes.sed`. We
used to use this in MSVC builds using the perl utility `psed`, which mimicked
sed. However, that utility disappeared from Windows perl distributions and so
we converted the sed script to a perl script to be used in MSVC builds.

We still keep the sed script as the authoritative source for generating
these dummy probes because except on Windows perl is not a hard requirement
when building from a tarball.

So, if you need to change the way dummy probes are generated, first change
the sed script, and when it's working generate the perl script. This can
be accomplished by using the perl utility s2p.

s2p is no longer part of the perl core, so it might not be on your system,
but it is available on CPAN and also in many package systems. e.g.
on Fedora it can be installed using `cpan App::s2p` or
`dnf install perl-App-s2p`.

The Makefile contains a recipe for regenerating Gen_dummy_probes.pl, so all
you need to do is once you have s2p installed is `make Gen_dummy_probes.pl`
Note that in a VPATH build this will generate the file in the vpath tree,
not the source tree.