From 9e6df606197395a5fea6efb13f6f443f420e7b39 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 5 Jan 2013 08:29:18 -0500 Subject: [PATCH] doc: Update CREATE FUNCTION compatibility information Parameter defaults are actually in the SQL standard, while it was previously claimed they were not. --- doc/src/sgml/ref/create_function.sgml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 4ac5bdaf65..48160b255e 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -758,11 +758,9 @@ COMMIT; - The SQL standard does not specify parameter defaults. The syntax - with the DEFAULT key word is from Oracle, and it - is somewhat in the spirit of the standard: SQL/PSM uses it for - variable default values. The syntax with = is - used in T-SQL and Firebird. + For parameter defaults, the SQL standard specifies only the syntax with + the DEFAULT key word. The syntax + with = is used in T-SQL and Firebird.