mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
Ooops, let's get the non-null vs null bit right ...
This commit is contained in:
parent
a9aad1b868
commit
c5d644a867
@ -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">
|
<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</>
|
If a function is declared <literal>STRICT</> with a <literal>VARIADIC</>
|
||||||
argument, the strictness check tests that the variadic array <emphasis>as
|
argument, the strictness check tests that the variadic array <emphasis>as
|
||||||
a whole</> is non-null. The function will still be called if the
|
a whole</> is non-null. The function will still be called if the
|
||||||
array has non-null elements.
|
array has null elements.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
Loading…
Reference in New Issue
Block a user