Clean up command argument assembly
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 5 Jul 2023 04:56:37 +0000 (06:56 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Wed, 5 Jul 2023 05:15:23 +0000 (07:15 +0200)
commitcccdbc5d95aca276789bbe28783f3e06f9a3ba9c
treec7aef59a0132794c5fe766548b4e67a837a50a1f
parentfa88928470b538c0ec0289e4d69ee12356c5a8ce
Clean up command argument assembly

Several commands internally assemble command lines to call other
commands.  This includes initdb, pg_dumpall, and pg_regress.  (Also
pg_ctl, but that is different enough that I didn't consider it here.)
This has all evolved a bit organically, with fixed-size buffers, and
various optional command-line arguments being injected with
confusing-looking code, and the spacing between options handled in
inconsistent ways.  Clean all this up a bit to look clearer and be
more easily extensible with new arguments and options.  We start each
command with printfPQExpBuffer(), and then append arguments as
necessary with appendPQExpBuffer().  Also standardize on using
initPQExpBuffer() over createPQExpBuffer() where possible.  pg_regress
uses StringInfo instead of PQExpBuffer, but many of the same ideas
apply.

Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://www.postgresql.org/message-id/flat/16d0beac-a141-e5d3-60e9-323da75f49bf@eisentraut.org
src/bin/initdb/initdb.c
src/bin/pg_dump/pg_dumpall.c
src/test/regress/pg_regress.c