Dieser Inhalt ist in der von Ihnen ausgewählten Sprache nicht verfügbar.
12.9. Variable Argument Support
Instead of using just an IN parameter, the last non optional parameter can be declared VARIADIC to indicate that it can be repeated 0 or more times when the procedure is called positionally. Section A.7, “Productions”.
Example 12.6. Example:Vararg procedure
CREATE FOREIGN PROCEDURE proc (x integer, VARIADIC z integer) returns (x string);