pg_hba.conf additional comment re local line

Поиск
Список
Период
Сортировка
От Andrew Dunstan
Тема pg_hba.conf additional comment re local line
Дата
Msg-id 41505CDF.1040303@dunslane.net
обсуждение исходный текст
Ответы Re: pg_hba.conf additional comment re local line
Re: pg_hba.conf additional comment re local line
Список pgsql-patches
The attached tiny patch will possibly help to avoid some confusion by
Windows users about the "local" line in pg_hba.conf (and thus help
reduce queries to us ;-) ). It also removes an essentially content-free
suffix in 2 nearby comment lines.

cheers

andrew
Index: src/backend/libpq/pg_hba.conf.sample
===================================================================
RCS file: /projects/cvsroot/pgsql-server/src/backend/libpq/pg_hba.conf.sample,v
retrieving revision 1.53
diff -c -w -r1.53 pg_hba.conf.sample
*** src/backend/libpq/pg_hba.conf.sample    26 Aug 2004 16:50:05 -0000    1.53
--- src/backend/libpq/pg_hba.conf.sample    21 Sep 2004 16:41:30 -0000
***************
*** 60,67 ****

  # TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

  local   all         all                               @authmethod@
! # IPv4-style local connections:
  host    all         all         127.0.0.1/32          @authmethod@
! # IPv6-style local connections:
  host    all         all         ::1/128               @authmethod@
--- 60,68 ----

  # TYPE  DATABASE    USER        CIDR-ADDRESS          METHOD

+ # "local" is for Unix domain socket connections, and does not apply to Windows
  local   all         all                               @authmethod@
! # IPv4 local connections:
  host    all         all         127.0.0.1/32          @authmethod@
! # IPv6 local connections:
  host    all         all         ::1/128               @authmethod@

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: psql \set case sensitive for boolean (OFF/off)
Следующее
От: Greg Stark
Дата:
Сообщение: Re: [SQL] COUNT(*) to find records which have a certain number of dependencies ?