]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Remove arbitrary MAXPGPATH limit on command lengths in pg_ctl.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Sep 2021 01:04:45 +0000 (21:04 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 4 Sep 2021 01:04:45 +0000 (21:04 -0400)
commit9a070c6589069d94e04cfccc4dc9279478f123ae
treef1d8df1f7c6ab3c8d92b5faf1ecec0e457f0c2ad
parentdea212e245f69fb1cb808e030638b7220311eed9
Remove arbitrary MAXPGPATH limit on command lengths in pg_ctl.

Replace fixed-length command buffers with psprintf() calls.  We didn't
have anything as convenient as psprintf() when this code was written,
but now that we do, there's little reason for the limitation to
stand.  Removing it eliminates some corner cases where (for example)
starting the postmaster with a whole lot of options fails.

Most individual file names that pg_ctl deals with are still restricted
to MAXPGPATH, but we've seldom had complaints about that limitation
so long as it only applies to one filename.

Back-patch to all supported branches.

Phil Krylov

Discussion: https://postgr.es/m/567e199c6b97ee19deee600311515b86@krylov.eu
src/bin/pg_ctl/pg_ctl.c