We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent869b1e4 commit5d924f0Copy full SHA for 5d924f0
doc/src/sgml/ref/create_function.sgml
@@ -579,12 +579,13 @@ CREATE FUNCTION foo(int, int default 42) ...
579
580
<para>
581
The full <acronym>SQL</acronym> type syntax is allowed for
582
- input arguments and return value. However, some details of the
583
- type specification (e.g., the precision field for
584
- type <type>numeric</type>) are the responsibility of the
585
- underlying function implementation and are silently swallowed
586
- (i.e., not recognized or
587
- enforced) by the <command>CREATE FUNCTION</command> command.
+ declaring a function's arguments and return value. However,
+ parenthesized type modifiers (e.g., the precision field for
+ type <type>numeric</type>) are discarded by <command>CREATE FUNCTION</>.
+ Thus for example
+ <literal>CREATE FUNCTION foo (varchar(10)) ...</>
+ is exactly the same as
588
+ <literal>CREATE FUNCTION foo (varchar) ...</>.
589
</para>
590
591