pgsql: Fix sample INSTR() functions in the plpgsql documentation.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix sample INSTR() functions in the plpgsql documentation.
Дата
Msg-id E1eZOdA-0001tR-Q3@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix sample INSTR() functions in the plpgsql documentation.

These functions are stated to be Oracle-compatible, but they weren't.
Yugo Nagata noticed that while our code returns zero for a zero or
negative fourth parameter (occur_index), Oracle throws an error.
Further testing by me showed that there was also a discrepancy in the
interpretation of a negative third parameter (beg_index): Oracle thinks
that a negative beg_index indicates the last place where the target
substring can *begin*, whereas our code thinks it is the last place
where the target can *end*.

Adjust the sample code to behave like Oracle in both these respects.
Also change it to be a CDATA[] section, simplifying copying-and-pasting
out of the documentation source file.  And fix minor problems in the
introductory comment, which wasn't very complete or accurate.

Back-patch to all supported branches.  Although this patch only touches
documentation, we should probably call it out as a bug fix in the next
minor release notes, since users who have adopted the functions will
likely want to update their versions.

Yugo Nagata and Tom Lane

Discussion: https://postgr.es/m/20171229191705.c0b43a8c.nagata@sraoss.co.jp

Branch
------
REL9_4_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/493cdc8ee503eeb2a48736a3c5c2a59d52d26838

Modified Files
--------------
doc/src/sgml/plpgsql.sgml | 86 +++++++++++++++++++++++------------------------
1 file changed, 42 insertions(+), 44 deletions(-)


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: pgsql: Use portal pinning in PL/Perl and PL/Python
Следующее
От: Teodor Sigaev
Дата:
Сообщение: pgsql: Fix behavior of ~> (cube, int) operator