pgsql: Back-patch some minor bug fixes in GUC code.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Back-patch some minor bug fixes in GUC code.
Дата
Msg-id E1Z9LDO-0000n4-1Z@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Back-patch some minor bug fixes in GUC code.

In 9.4, fix a 9.4.1 regression that allowed multiple entries for a
PGC_POSTMASTER variable to cause bogus complaints in the postmaster log.
(The issue here was that commit bf007a27acd7b2fb unintentionally reverted
3e3f65973a3c94a6, which suppressed any duplicate entries within
ParseConfigFp.  Back-patch the reimplementation just made in HEAD, which
makes use of an "ignore" field to prevent application of superseded items.)

Add missed failure check in AlterSystemSetConfigFile().  We don't really
expect ParseConfigFp() to fail, but that's not an excuse for not checking.

In both 9.3 and 9.4, remove mistaken assignment to ConfigFileLineno that
caused line counting after an include_dir directive to be completely wrong.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/5a56c254588a91de393b8ce99f8deeefc6a44d67

Modified Files
--------------
src/backend/utils/misc/guc-file.l |    1 -
1 file changed, 1 deletion(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Back-patch some minor bug fixes in GUC code.
Следующее
От: Tom Lane
Дата:
Сообщение: Re: pgsql: Fix the fallback memory barrier implementation to be reentrant.