Re: control pg_hba.conf via SQL

Поиск
Список
Период
Сортировка
От Tino Wildenhain
Тема Re: control pg_hba.conf via SQL
Дата
Msg-id 442B70B3.9000306@wildenhain.de
обсуждение исходный текст
Ответ на Re: control pg_hba.conf via SQL  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: control pg_hba.conf via SQL  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
Andrew Dunstan wrote:
> 
> ISTM that the first requirement is for a sane API that will handle the
> fact that HBA lines are ordered. Persistence in itself shouldn't be a
> big problem - we already do that with some shared tables, iirc.
> 
> so we might have some functions like:
> 
>  insert_hba_rule(at_position int, connection_type text, username text,
> dbname text, cidr_host text, method text)
>  move_hba_rule(from_position int, to_position int)
>  delete_hba_rule(at_position int)
> 
> Inventing new SQL syntax might make things a bit tougher.
> 

I dont think it has to be ordered preliminary. Since we are
dealing with subnets and stuff - the ordering already lays
in the data - just like routing tables work: most specific
matches first.

I could think of a solution where pg_hba.conf just
overrides the database table (so you have a starting
point with empty table and/or reentry in case of a
mistake)

regards
Tino


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: Re: control pg_hba.conf via SQL
Следующее
От:
Дата:
Сообщение: Re: Initdb on Windows 2003