Re: [PATCH] Add inline comments to the pg_hba_file_rules view

Поиск
Список
Период
Сортировка
От Jim Jones
Тема Re: [PATCH] Add inline comments to the pg_hba_file_rules view
Дата
Msg-id b63625ca-580f-14dc-7e7c-f90cd4d95cf7@uni-muenster.de
обсуждение исходный текст
Ответ на Re: [PATCH] Add inline comments to the pg_hba_file_rules view  (Michael Paquier <michael@paquier.xyz>)
Ответы Re: [PATCH] Add inline comments to the pg_hba_file_rules view  (Michael Paquier <michael@paquier.xyz>)
Список pgsql-hackers
On 15.09.23 01:28, Michael Paquier wrote:
> Yes, my suggestion was to define a new set-returning function that
> takes in input a file path and that returns as one row one comment and
> its line number from the configuration file.
> --
> Michael

Thanks!

If reading the file again is an option, perhaps a simple SQL function 
would suffice?

Something along these lines ..

CREATE OR REPLACE FUNCTION pg_read_conf_comments(text)
RETURNS TABLE (line_number int, comment text) AS $$
   SELECT lnum,
     trim(substring(line,
          nullif(strpos(line,'#'),0)+1,
          length(line)-strpos(line,'#')
     )) AS comment
   FROM unnest(string_to_array(pg_read_file($1),E'\n'))
        WITH ORDINALITY hba(line,lnum)
   WHERE trim(line) !~~ '#%' AND trim(line) <> '';
$$
STRICT LANGUAGE SQL ;


.. then we could join it with pg_hba_file_rules (or any other conf file)


SELECT type, database, user_name, address, c.comment
FROM  pg_hba_file_rules h, pg_read_conf_comments(h.file_name) c
WHERE user_name[1]='jim' AND h.line_number = c.line_number ;

  type | database | user_name |  address  | comment
------+----------+-----------+-----------+---------
  host | {db}     | {jim}     | 127.0.0.1 | foo
  host | {db}     | {jim}     | 127.0.0.1 | bar
  host | {db}     | {jim}     | 127.0.0.1 | #foo#
(3 rows)


Is it more or less what you had in mind?



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

Предыдущее
От: Karina Litskevich
Дата:
Сообщение: Re: BufferUsage counters' values have changed
Следующее
От: Anthonin Bonnefoy
Дата:
Сообщение: Re: POC: Extension for adding distributed tracing - pg_tracing