From: Tom Lane Date: Sun, 14 Feb 2010 01:01:35 +0000 (+0000) Subject: Ooops, let's get the non-null vs null bit right ... X-Git-Tag: REL9_0_ALPHA4~55 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5d644a867b6fc612b2905b3acfe463104479b66;p=postgresql Ooops, let's get the non-null vs null bit right ... --- diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 41dc4365ce..ed5d7c5bda 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -1,5 +1,5 @@ @@ -589,7 +589,7 @@ CREATE FUNCTION foo(int, int default 42) ... If a function is declared STRICT with a VARIADIC argument, the strictness check tests that the variadic array as a whole is non-null. The function will still be called if the - array has non-null elements. + array has null elements.