]> granicus.if.org Git - postgresql/commit
Make "postgres -C guc" print "" not "(null)" for null-valued GUCs.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 22 Jun 2016 15:55:18 +0000 (11:55 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 22 Jun 2016 15:55:18 +0000 (11:55 -0400)
commite45e990e4b547f05bdb46e4596d24abbaef60043
tree18d8f42a96a1d5f155b63a1cf11614b6b468ed3f
parent6a9c51810f1db08de4033cbecd95a83d7b364fd1
Make "postgres -C guc" print "" not "(null)" for null-valued GUCs.

Commit 0b0baf262 et al made this case print "(null)" on the grounds that
that's what happened on platforms that didn't crash.  But neither behavior
was actually intentional.  What we should print is just an empty string,
for compatibility with the behavior of SHOW and other ways of examining
string GUCs.  Those code paths don't distinguish NULL from empty strings,
so we should not here either.  Per gripe from Alain Radix.

Like the previous patch, back-patch to 9.2 where -C option was introduced.

Discussion: <CA+YdpwxPUADrmxSD7+Td=uOshMB1KkDN7G7cf+FGmNjjxMhjbw@mail.gmail.com>
src/backend/postmaster/postmaster.c