Re: SQL-standard function body
Noah Misch <noah@leadboat.com>
From: Noah Misch <noah@leadboat.com>
To: Tom Lane <tgl@sss.pgh.pa.us>
Cc: Julien Rouhaud <rjuju123@gmail.com>, Michael Paquier <michael@paquier.xyz>, Andres Freund <andres@anarazel.de>, Peter Eisentraut <peter.eisentraut@2ndquadrant.com>, Jaime Casanova <jcasanov@systemguards.com.ec>, PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2021-04-10T20:03:26Z
Lists: pgsql-hackers
On Sat, Apr 10, 2021 at 10:52:15AM -0400, Tom Lane wrote: > Noah Misch <noah@leadboat.com> writes: > > On Fri, Apr 09, 2021 at 12:09:43PM -0400, Tom Lane wrote: > >> The real value of 0003 of course would be to get an error cursor at > >> runtime > > > A key benefit of $SUBJECT is the function body following DDL renames: > > Agreed. But ... > > > After the rename, any stored prosrc is obsolete. To show accurate error > > cursors, deparse prosqlbody and use that in place of prosrc. > > ... I'm not sure this conclusion follows. There are two problems with it: > > 1. I don't see an acceptably low-overhead way to mechanize it. > Deparsing prosqlbody is unlikely to be safe in a post-error transaction, > but surely we'd not want to expend that cost in advance on every use > of a SQL function. Even ignoring that, the act of deparsing would not > in itself tell you what offset to use. Should we deparse and then > re-parse to get a new node tree with corrected token locations? If you really want those error cursors, yes. (I feel we can continue to live without them; their absence is no more important than it was ten years ago.) One can envision several ways to cache that high-overhead work. Otherwise, the usual PostgreSQL answer would be to omit an error cursor, not show one that reflects an obsolete sense of the function. If the original CREATE FUNCTION query text were so valuable, I'd be arguing to preserve it across dump/reload. > 2. The reason we can get away with showing a fragment of a large query > (or function body) in an error message is that the user is supposed to > be able to correlate the display with what she wrote. That assumption > falls to the ground if the display is based on a deconstruction that is > virtually certain to have line breaks in different places, not to mention > that the details of what is shown may be substantially different from the > original. Preferences on this matter will be situation-dependent. If I do CREATE FUNCTION f() ...; SELECT f() all in one sitting, then it's fine for an error in the SELECT to show the function I wrote. If I'm calling a function defined years ago, I'm likely to compare the error report to "\sf foo" and not likely to compare it to a years-old record of the SQL statement. I think it's fine to expect users to consult "\sf foo" when the user is in doubt. > Still, I take your point that the original text may be less useful > for this purpose than I was supposing.
Commits
-
Don't crash on empty statements in SQL-standard function bodies.
- bfeede9fa464 14.0 landed
-
psql: Fix line continuation prompts for unbalanced parentheses
- d9a9f4b4b92a 14.0 landed
-
Provide query source text when parsing a SQL-standard function body.
- 409723365b27 14.0 landed
-
Revert "Cope with NULL query string in ExecInitParallelPlan()."
- 83efce7a1ebc 14.0 landed
-
Undo decision to allow pg_proc.prosrc to be NULL.
- 1111b2668d89 14.0 landed
-
SQL-standard function body
- e717a9a18b2e 14.0 landed
-
Move pg_stat_statements query jumbling to core.
- 5fd9dfa5f50e 14.0 cited
-
Extend SQL function tests lightly
- 11b80d900fe4 14.0 landed