diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-14 01:01:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-14 01:01:35 +0000 |
commit | c5d644a867b6fc612b2905b3acfe463104479b66 (patch) | |
tree | 12a6b15330fe407f47f70613d18123d697160c14 /doc/src | |
parent | a9aad1b8687f9919cdf7792c3a04ebc7239fe8f1 (diff) | |
download | postgresql-c5d644a867b6fc612b2905b3acfe463104479b66.tar.gz postgresql-c5d644a867b6fc612b2905b3acfe463104479b66.zip |
Ooops, let's get the non-null vs null bit right ...
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_function.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_function.sgml b/doc/src/sgml/ref/create_function.sgml index 41dc4365ce7..ed5d7c5bda5 100644 --- a/doc/src/sgml/ref/create_function.sgml +++ b/doc/src/sgml/ref/create_function.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.89 2010/02/14 00:48:12 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/create_function.sgml,v 1.90 2010/02/14 01:01:35 tgl Exp $ --> <refentry id="SQL-CREATEFUNCTION"> @@ -589,7 +589,7 @@ CREATE FUNCTION foo(int, int default 42) ... If a function is declared <literal>STRICT</> with a <literal>VARIADIC</> argument, the strictness check tests that the variadic array <emphasis>as a whole</> is non-null. The function will still be called if the - array has non-null elements. + array has null elements. </para> </refsect1> |