We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
args
1 parent a61465c commit 10cfc28Copy full SHA for 10cfc28
src/lib/sql/functions.sql
@@ -34,7 +34,7 @@ select
34
when l.lanname = 'internal' then f.prosrc
35
else pg_get_functiondef(f.oid)
36
end as complete_statement,
37
- f_args.args as args,
+ coalesce(f_args.args, '[]') as args,
38
pg_get_function_arguments(f.oid) as argument_types,
39
pg_get_function_identity_arguments(f.oid) as identity_argument_types,
40
t.typname as return_type,
0 commit comments