]> granicus.if.org Git - postgresql/commit
Code review for GUC serialization/deserialization code.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 19 Nov 2016 19:26:19 +0000 (14:26 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 19 Nov 2016 19:26:19 +0000 (14:26 -0500)
commit272c426604e249157e99394ec1b81e9594783ab0
treec8637951231d7d84b99ef927b6a9067b9a6c0fae
parent0eaa5118ae457ff9873a796e08adaea1bb8172f9
Code review for GUC serialization/deserialization code.

The serialization code dumped core for a string-valued GUC whose value
is NULL, which is a legal state.  The infrastructure isn't capable of
transmitting that state exactly, but fortunately, transmitting an empty
string instead should be close enough (compare, eg, commit e45e990e4).

The code potentially underestimated the space required to format a
real-valued variable, both because it made an unwarranted assumption that
%g output would never be longer than %e output, and because it didn't count
right even for %e format.  In practice this would pretty much always be
masked by overestimates for other variables, but it's still wrong.

Also fix boundary-case error in read_gucstate, incorrect handling of the
case where guc_sourcefile is non-NULL but zero length (not clear that can
happen, but if it did, this code would get totally confused), and
confusingly useless check for a NULL result from read_gucstate.

Andreas Seltenreich discovered the core dump; other issues noted while
reading nearby code.  Back-patch to 9.5 where this code was introduced.

Michael Paquier and Tom Lane

Discussion: <871sy78wno.fsf@credativ.de>
src/backend/utils/misc/guc.c