Allow => syntax for named cursor arguments in plpgsql. We've traditionally accepted "name := value" syntax for cursor arguments in plpgsql. But it turns out that the equivalent statements in Oracle use "name => value". Since we accept both forms of punctuation for function arguments, it makes sense to do the same here.
Author: Pavel Stehule <pavel.steh...@gmail.com> Reviewed-by: Gilles Darold <gil...@darold.net> Discussion: https://postgr.es/m/cafj8pra3d0arqembaba1n6q25audnmyo8ags56xnf9pd4sr...@mail.gmail.com Branch ------ master Details ------- https://git.postgresql.org/pg/commitdiff/246dedc5d028800b393920184e5e6319c6805253 Modified Files -------------- doc/src/sgml/plpgsql.sgml | 8 +++++--- src/pl/plpgsql/src/pl_gram.y | 13 ++++++++----- src/test/regress/expected/plpgsql.out | 6 ++++-- src/test/regress/sql/plpgsql.sql | 6 ++++-- 4 files changed, 21 insertions(+), 12 deletions(-)