Re: Parsing config files in a directory

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Parsing config files in a directory
Дата
Msg-id 3854.1256823853@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Parsing config files in a directory  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: Parsing config files in a directory  (Robert Haas <robertmhaas@gmail.com>)
Список pgsql-hackers
Andrew Dunstan <andrew@dunslane.net> writes:
> Anyway, it seems to me a whole lot better than inventing a new thing  
> that makes "custom_variable_class" as something to append to 
> "custom_variable_classes". If you're going to insist on using "append 
> foo = 'x'" at least let it apply to the list that is actually being 
> appended to, so we don't need to keep track of singular and plural 
> forms. That's the part of your suggestion I really object to.

The scheme really really has to have a "set" and an "append" operation.
Otherwise, undesirable things happen whenever the conf file is re-read.

I would envision postgresql.conf containingcustom_variable_classes = ''
and then individual config files containingcustom_variable_classes += 'foo'
Exact syntax isn't that important, although I confess to liking +=
better than a keyword.

Another possibility is that the reset to empty is somehow implicit
at the start of reading the conf file.  But I'd still think it's better
if the appending operations are visibly different from ordinary
assignment.
        regards, tom lane


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

Предыдущее
От: Marcelo Costa
Дата:
Сообщение: Re: Show schema size with \dn+
Следующее
От: Grzegorz Jaskiewicz
Дата:
Сообщение: Re: Syntax for partitioning