Re: pgsql: Skip some permissions checks on Cygwin

Поиск
Список
Период
Сортировка
От Noah Misch
Тема Re: pgsql: Skip some permissions checks on Cygwin
Дата
Msg-id 20240624010311.0b.nmisch@google.com
обсуждение исходный текст
Ответ на pgsql: Skip some permissions checks on Cygwin  (Andrew Dunstan <andrew@dunslane.net>)
Ответы Re: pgsql: Skip some permissions checks on Cygwin
Список pgsql-committers
On Thu, Jun 13, 2024 at 12:12:29PM +0000, Andrew Dunstan wrote:
> Skip some permissions checks on Cygwin
> 
> These are checks that are already skipped on other Windows systems.

>      skip "unix-style permissions not supported on Windows", 2
> -      if ($windows_os);
> +      if ($windows_os || $Config::Config{osname} eq 'cygwin');

> -    skip "group access not supported on Windows", 3 if ($windows_os);
> +    skip "group access not supported on Windows", 3
> +      if ($windows_os || $Config::Config{osname} eq 'cygwin');

Cygwin does support Unix-style permissions, so I'm not following the rationale
for this change.  Can you say more?



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

Предыдущее
От: Alexander Korotkov
Дата:
Сообщение: pgsql: Remove extra comment at TableAmRoutine.scan_analyze_next_block
Следующее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Translation updates