Parse proc arg definitions that have multi-word types

This commit is contained in:
Joe Nelson
2016-09-22 23:30:47 -07:00
parent 539df21627
commit a88a704bef
3 changed files with 45 additions and 15 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ CREATE FUNCTION varied_arguments(
) RETURNS text
LANGUAGE sql
AS $_$
SELECT 'Hi';
SELECT 'Hi'::text;
$_$;