-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: push def val for opt arg with def value null
- Loading branch information
Elin Angelow
committed
Feb 3, 2024
1 parent
2fcce0c
commit 3f4ecc3
Showing
2 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
SELECT | ||
nspname "schema", | ||
proname "name", | ||
pronargs ninargs, | ||
proname "name", | ||
pronargs ninargs, | ||
pronargdefaults nargdefaults, | ||
prorettype rettype, | ||
proargtypes inargtypes, | ||
proallargtypes allargtypes, | ||
proargnames argnames, | ||
proargmodes argmodes | ||
proargmodes argmodes, | ||
p.proargnames[pronargs-pronargdefaults+1:pronargs] optargnames, | ||
pg_get_expr(p.proargdefaults, 0) optargdefaults | ||
FROM | ||
pg_catalog.pg_namespace n | ||
JOIN | ||
pg_catalog.pg_proc p ON | ||
p.pronamespace = n.oid | ||
WHERE | ||
nspname not IN ('pg_catalog', 'information_schema') | ||
|
||
nspname not IN ('pg_catalog', 'information_schema') |