From: | Christophe Pettus <xof(at)thebuild(dot)com> |
---|---|
To: | Bryn Llewellyn <bryn(at)yugabyte(dot)com> |
Cc: | pgsql-general list <pgsql-general(at)lists(dot)postgresql(dot)org> |
Subject: | Re: « The PL/pgSQL interpreter parses the function's source text and produces an internal binary instruction tree... » |
Date: | 2022-07-29 02:09:36 |
Message-ID: | 445B2142-D857-4BD4-9DA9-3988D6CF5658@thebuild.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
> On Jul 28, 2022, at 18:49, Bryn Llewellyn <bryn(at)yugabyte(dot)com> wrote:
> It's this that surprises me. And it's this, and only this, that I'm asking about: might _just_ this be a fixable bug?
It might be surprising, but it's not a bug. You can demonstrate it with a very small test case:
CREATE FUNCTION f() RETURNS VOID AS $$
DECLARE
x int not null := 0;
BEGIN
x := y;
END;
$$ language plpgsql;
But gets an error on execution:
xof=# SELECT f();
ERROR: column "y" does not exist
LINE 1: x := y
^
QUERY: x := y
CONTEXT: PL/pgSQL function f() line 5 at assignment
The clue is that it is complaining about a missing "column." Assignment in PL/pgSQL is essentially syntactic sugar around a SELECT ... INTO. The assignment there is processed pretty much as if it were written:
SELECT y INTO x;
Note, however, that this does *not* compile:
CREATE OR REPLACE FUNCTION f() RETURNS VOID AS $$
DECLARE
x int not null := 0;
BEGIN
y := x;
END;
$$ language plpgsql;
ERROR: "y" is not a known variable
LINE 5: y := x;
Unquestionably, this is surprising! The reasons, such as they are, are based in how PL/pgSQL processes SQL statements. (For example, if you look at the grammar, it literally takes "SELECT x INTO y;" turns it into "SELECT x ;", and passes that to the SPI. This has the virtue that it doesn't have to have a complete PostgreSQL SQL grammar replicated in it (what a nightmare), but it does result in some of the implementation poking through.
From | Date | Subject | |
---|---|---|---|
Next Message | Bryn Llewellyn | 2022-07-29 02:57:20 | Re: « The PL/pgSQL interpreter parses the function's source text and produces an internal binary instruction tree... » |
Previous Message | Tom Lane | 2022-07-29 02:04:02 | Re: Re: « The PL/pgSQL interpreter parses the function's source text and produces an internal binary instruction tree... » |