Re: Manua correction

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Manua correction
Дата
Msg-id 400208.1626793389@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Manua correction  (Bruce Momjian <bruce@momjian.us>)
Ответы Re: Manua correction  (Bruce Momjian <bruce@momjian.us>)
Список pgsql-docs
Bruce Momjian <bruce@momjian.us> writes:
> On Thu, Jul 15, 2021 at 11:12:38PM -0400, Tom Lane wrote:
>> At least two of these changes are flat out wrong.  The places
>> that explicitly mention "substring(s)" are not doing so because
>> we failed to think about what that meant.

> I really don't understand the use of "(s)" except in place where we are
> really trying to point out the idea of one or multiple, and I don't see
> that being significant in these cases --- can you clarify?

See the example given for regexp_match:

regression=# select regexp_match('foobarbequebaz', '(bar)(beque)'); 
 regexp_match 
--------------
 {bar,beque}
(1 row)

There's more than one parenthesized subpattern, so you get more than
one substring in the result.  So I think that change is flat out
wrong.

The places where you changed "substring(s)" to "substrings" are maybe
not flat wrong, but I don't think they're improving the text either.
IIRC, in most of them you get one match if you didn't use the 'g'
flag, but possibly multiple matches if you did, and the "substring(s)"
wording is meant to allude to that without taking the space to spell
it out explicitly.

            regards, tom lane



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

Предыдущее
От: Elena Indrupskaya
Дата:
Сообщение: Minor language edits for PostgreSQL 14 Release Notes
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Manua correction