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.
1 parent a4a9ca7 commit 7129f7aCopy full SHA for 7129f7a
src/lib/sql/functions.sql
@@ -29,12 +29,12 @@ FROM
29
LEFT JOIN pg_type t ON t.oid = p.prorettype
30
LEFT JOIN (
31
SELECT
32
- oid as id,
33
- (string_to_array(unnest(proconfig), '='))[1] AS param,
34
- (string_to_array(unnest(proconfig), '='))[2] AS value
35
- FROM
36
- pg_proc
37
- ) p_config ON p_config.id = p.oid
+ oid as id,
+ (string_to_array(unnest(proconfig), '='))[1] AS param,
+ (string_to_array(unnest(proconfig), '='))[2] AS value
+ FROM
+ pg_proc
+ ) p_config ON p_config.id = p.oid
38
GROUP BY
39
p.oid,
40
n.nspname,
0 commit comments