pgsql: Change PROCEDURE to FUNCTION in CREATE OPERATOR syntax - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Change PROCEDURE to FUNCTION in CREATE OPERATOR syntax
Date
Msg-id E1fsSwo-000620-Vd@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Change PROCEDURE to FUNCTION in CREATE OPERATOR syntax

Since procedures are now a different thing from functions, change the
CREATE OPERATOR syntax to use FUNCTION in the clause that specifies the
function.  PROCEDURE is still accepted for compatibility.

Reported-by: Peter Geoghegan <pg@bowt.ie>
Reviewed-by: Jonathan S. Katz <jonathan.katz@excoventures.com>

Branch
------
REL_11_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/fd4417e8ac46ea4cb079ed53f849dc48199506d6

Modified Files
--------------
doc/src/sgml/extend.sgml                      |  2 +-
doc/src/sgml/ref/create_operator.sgml         | 12 ++++++++++--
doc/src/sgml/xoper.sgml                       |  4 ++--
src/backend/commands/operatorcmds.c           | 20 ++++++++++++--------
src/bin/pg_dump/pg_dump.c                     |  2 +-
src/test/regress/expected/create_operator.out |  6 +++---
src/test/regress/sql/create_operator.sql      |  2 +-
7 files changed, 30 insertions(+), 18 deletions(-)


pgsql-committers by date:

Previous
From: Thomas Munro
Date:
Subject: pgsql: Wrap long line in postgresql.conf.sample.
Next
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Clarify some wording in PL/pgSQL about transactions