pgsql: Make "postgres -C guc" print "" not "(null)" for null-valued GUC

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Make "postgres -C guc" print "" not "(null)" for null-valued GUC
Дата
Msg-id E1bFkVi-00047e-Jg@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
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>

Branch
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/dd41661d2c613c3e4f8328191758398bfbcbd598

Modified Files
--------------
src/backend/postmaster/postmaster.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Make "postgres -C guc" print "" not "(null)" for null-valued GUC
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Make "postgres -C guc" print "" not "(null)" for null-valued GUC