From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | jbe-mlist(at)magnetkern(dot)de |
Cc: | pgsql-bugs(at)lists(dot)postgresql(dot)org |
Subject: | Re: BUG #18693: Column names not set when using SELECT STRICT INTO with RECORD type |
Date: | 2024-11-06 22:30:02 |
Message-ID: | 3305167.1730932202@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> I used the following SQL code:
> CREATE TABLE tbl (a TEXT, b TEXT);
> CREATE FUNCTION "buggy"() RETURNS VOID LANGUAGE plpgsql AS $$
> DECLARE
> t tbl%ROWTYPE;
> r RECORD;
> BEGIN
> SELECT a, b INTO t FROM (SELECT 'A' AS a, 'B' AS b) AS q;
> RAISE NOTICE 'non-strict t = %', t;
> RAISE NOTICE 'non-strict t.a = %', t.a;
> RAISE NOTICE 'non-strict t.b = %', t.b;
> SELECT a, b STRICT INTO t FROM (SELECT 'A' AS a, 'B' AS b) AS q;
> RAISE NOTICE 'STRICT t = %', t;
> RAISE NOTICE 'STRICT t.a = %', t.a;
> RAISE NOTICE 'STRICT t.b = %', t.b;
> SELECT a, b INTO r FROM (SELECT 'A' AS a, 'B' AS b) AS q;
> RAISE NOTICE 'non-strict r = %', r;
> RAISE NOTICE 'non-strict r.a = %', r.a;
> RAISE NOTICE 'non-strict r.b = %', r.b;
> SELECT a, b STRICT INTO r FROM (SELECT 'A' AS a, 'B' AS b) AS q;
> RAISE NOTICE 'STRICT r = %', r;
> RAISE NOTICE 'STRICT r.a = %', r.a;
> RAISE NOTICE 'STRICT r.b = %', r.b;
> END;
> $$;
You have the syntax wrong: what you intended (I presume) is
SELECT a, b INTO STRICT r FROM (SELECT 'A' AS a, 'B' AS b) AS q;
With what you wrote, the STRICT is taken as an output column alias of
the outer SELECT, as if the command were
SELECT a, b AS "strict" INTO r FROM (SELECT 'A' AS a, 'B' AS b) AS q;
The alias makes no difference when assigning to "t", since its column
names are predetermined. But when assigning to "r", the second column
winds up being named "strict" not "b". You can demonstrate this with
SELECT a, b STRICT INTO r FROM (SELECT 'A' AS a, 'B' AS b) AS q;
RAISE NOTICE 'STRICT r = %', r;
RAISE NOTICE 'STRICT r.a = %', r.a;
RAISE NOTICE 'STRICT r.strict = %', r."strict";
(It's kind of annoying that "strict" has to be double-quoted
in the RAISE NOTICE, especially since you get a rather misleading
error if it isn't. But that seems like a different discussion.)
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Thomas Munro | 2024-11-07 00:01:58 | Re: Detection of hadware feature => please do not use signal |
Previous Message | Thomas Munro | 2024-11-06 20:48:50 | Re: BUG #18691: Turkish Character Encoding |