postgresql/src/backend/utils
Peter Geoghegan bc2187ed63 Consistently use named parameters in regex code.
Make regex code consistently use named parameters in function
declarations.  Also make sure that parameter names from each function's
declaration match corresponding definition parameter names.

This makes Henry Spencer's regex code follow Postgres coding standards.

Author: Peter Geoghegan <pg@bowt.ie>
Reviewed-By: David Rowley <dgrowleyml@gmail.com>
Discussion: https://postgr.es/m/CAH2-WznJt9CMM9KJTMjJh_zbL5hD9oX44qdJ4aqZtjFi-zA3Tg@mail.gmail.com
2022-09-19 15:10:24 -07:00
..
activity Remove various duplicated words 2022-09-20 08:37:02 +12:00
adt Consistently use named parameters in regex code. 2022-09-19 15:10:24 -07:00
cache Split up guc.c for better build speed and ease of maintenance. 2022-09-13 11:11:45 -04:00
error Split up guc.c for better build speed and ease of maintenance. 2022-09-13 11:11:45 -04:00
fmgr Remove unnecessary casts in free() and pfree() 2022-08-26 15:55:57 +02:00
hash Update copyright for 2022 2022-01-07 19:04:57 -05:00
init Split up guc.c for better build speed and ease of maintenance. 2022-09-13 11:11:45 -04:00
mb Revert "Convert *GetDatum() and DatumGet*() macros to inline functions" 2022-09-12 19:57:07 +02:00
misc Use the terminology "WAL file" not "log file" more consistently. 2022-09-14 18:40:58 -04:00
mmgr Temporarily make MemoryContextContains return false 2022-09-09 00:28:38 +12:00
resowner Fix incorrect uses of Datum conversion macros 2022-09-05 13:30:44 +02:00
sort Be smarter about freeing tuples during tuplesorts 2022-09-01 11:08:10 +12:00
time Optimize xid/subxid searches in XidInMVCCSnapshot(). 2022-08-11 09:17:42 +07:00
.gitignore Rearrange makefile rules for running Gen_fmgrtab.pl. 2018-05-03 17:54:18 -04:00
Gen_dummy_probes.pl Update copyright for 2022 2022-01-07 19:04:57 -05:00
Gen_dummy_probes.pl.prolog Update copyright for 2022 2022-01-07 19:04:57 -05:00
Gen_dummy_probes.sed Update copyright for 2022 2022-01-07 19:04:57 -05:00
Gen_fmgrtab.pl Update copyright for 2022 2022-01-07 19:04:57 -05:00
Makefile Clean up temp file from refactored dtrace rule 2022-07-19 07:31:58 +02:00
README.Gen_dummy_probes Tweak generation of Gen_dummy_probes.pl 2021-05-11 20:02:02 -04:00
errcodes.txt Add another SQL/JSON error code 2022-07-18 14:26:43 +02:00
generate-errcodes.pl Add output file argument to generate-errcodes.pl 2022-07-18 12:24:35 -07:00
postprocess_dtrace.sed Refactor dtrace postprocessing make rules 2022-07-18 12:33:02 -07:00
probes.d Update copyright for 2022 2022-01-07 19:04:57 -05:00

README.Gen_dummy_probes

# 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.