Re: PL/pgSQL: Spurious 22P02 error on "select col into var" when col is user-defined type - Mailing list pgsql-general

From Pavel Stehule
Subject Re: PL/pgSQL: Spurious 22P02 error on "select col into var" when col is user-defined type
Date
Msg-id CAFj8pRBn6yEb1EZY3N=-KLfXWVpx9FBCvL_YKMBK91wWKjjjYA@mail.gmail.com
Whole thread Raw
In response to Re: PL/pgSQL: Spurious 22P02 error on "select col into var" when col is user-defined type  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: PL/pgSQL: Spurious 22P02 error on "select col into var" when col is user-defined type  (Bryn Llewellyn <bryn@yugabyte.com>)
List pgsql-general


po 9. 8. 2021 v 23:13 odesílatel Tom Lane <tgl@sss.pgh.pa.us> napsal:
Pavel Stehule <pavel.stehule@gmail.com> writes:
> Some errors like this, but not this can be detected by plpgsql_check
> https://github.com/okbob/plpgsql_check - probably the heuristic for type
> check is not complete.

STRICTMULTIASSIGNMENT would detect most cases of this, except that
the condition is checked too late.  We'd need to count the fields
*before* trying to assign values, not after.

In the meantime, it does seem like the docs could be more explicit
about this, and perhaps give an example showing the (x).* solution.

Yes, a more detailed explanation of this behavior can be nice.  There can be an example of value unnesting, but I think so for this case, there should be mainly an example of ANSI assign syntax.

var := (SELECT x FROM ..)

This syntax has advantages so is not amigonuous for this case, and explicit unnesting is not necessary (and it is not possible). Moreover, this is ANSI SQL syntax.

Regards

Pavel



                        regards, tom lane

pgsql-general by date:

Previous
From: Mladen Gogala
Date:
Subject: Re: Serious List of PostgreSQL usage questions.
Next
From: Pavel Stehule
Date:
Subject: Re: PL/pgSQL: Spurious 22P02 error on "select col into var" when col is user-defined type