Re: INFORMATION_SCHEMA.routines column routine_definition does not show the source
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: "David G. Johnston" <david.g.johnston@gmail.com>
Cc: Erki Eessaar <erki.eessaar@taltech.ee>,
Peter Eisentraut <peter.eisentraut@2ndquadrant.com>,
"pgsql-bugs@lists.postgresql.org" <pgsql-bugs@lists.postgresql.org>
Date: 2021-11-03T16:46:38Z
Lists: pgsql-bugs
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Add some sanity checks in executor for query ID reporting
- 24f520594809 18.0 cited
-
Fix psql's \sf and \ef for new-style SQL functions.
- cabfb8241dea 16.0 landed
- 97299cf99df0 15.2 landed
- 303b26c1bb14 14.7 landed
"David G. Johnston" <david.g.johnston@gmail.com> writes: > The information schema query consults pg_proc.prosrc directly instead of > calling pg_get_functiondef(...) (which didn't exist when the original query > was written, and hasn't been wrong until now). pg_get_functiondef would produce more than we want, but it looks like pg_get_function_sqlbody() would do. BTW, while researching this I noted the header comment for pg_get_functiondef: * Note: if you change the output format of this function, be careful not * to break psql's rules (in \ef and \sf) for identifying the start of the * function body. To wit: the function body starts on a line that begins * with "AS ", and no preceding line will look like that. Needless to say, the SQL-function-body patch has ignored this advice totally. At the very least this comment needs to be adjusted, but I wonder if it's not telling us that \ef and/or \sf are broken. regards, tom lane