From d1e0eb30c0d1ed67c22844479c57ea6d9fd5c4d9 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 14 Feb 2010 01:01:40 +0000 Subject: [PATCH] Ooops, let's get the non-null vs null bit right ... --- doc/src/sgml/ref/create_function.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index a836d808c1..e0f89ec2c8 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -1,5 +1,5 @@ @@ -574,7 +574,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.