Re: plpgsql FOR LOOP CTE problem ?

Поиск
Список
Период
Сортировка
От Day, David
Тема Re: plpgsql FOR LOOP CTE problem ?
Дата
Msg-id 401084E5E73F4241A44F3C9E6FD79428A70BC1EE@exch-01
обсуждение исходный текст
Ответ на Re: plpgsql FOR LOOP CTE problem ?  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
Tom,

I feel chagrined, Your absolutely right and your explanation is quite good..
I see my other test case suffered from a similar logic error.
Thanks for taking the time to look into it for me.


Dave

-----Original Message-----
From: Tom Lane [mailto:tgl@sss.pgh.pa.us]
Sent: Friday, August 09, 2013 6:14 PM
To: Day, David
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] plpgsql FOR LOOP CTE problem ?

"Day, David" <dday@redcom.com> writes:
> A complete self contained test case: example of the problem with my FOR LOOP using a COMMON table expression.

Ah, I see the problem.  It's got nothing particularly to do with CTEs; rather, your temporary variable is of the wrong
rowtype:

>      drow test.tmm%ROWTYPE;  -- deleted row holder

>      FOR drow IN
>         WITH xrows AS (
>              DELETE FROM test.tmm
>                     WHERE tu_id = ws_id RETURNING *
>           )
>           SELECT translator_id, MIN(tid_seq), MIN(ws_grp_seq)
>            FROM xrows GROUP BY translator_id

That SELECT returns three columns, translator_id, MIN(tid_seq),
MIN(ws_grp_seq) (all of type int).  The FOR will attempt to stuff those three values into the first three columns of
"drow",which are 

>   name character varying,
>   tu_id integer NOT NULL DEFAULT 1,
>   translator_id integer NOT NULL,

All the rest are left NULL.  It's bad luck that you don't get a type mismatch error here, but there's an assignment
coercionfrom int to varchar, so the assignment of an int to the varchar name column doesn't raise an error. 

Personally I'd declare drow as RECORD so as to avoid the issue.

            regards, tom lane


В списке pgsql-general по дате отправления:

Предыдущее
От: Jayadevan M
Дата:
Сообщение: Re: Trigger to update table info
Следующее
От: Matt Solnit
Дата:
Сообщение: Question about using AggCheckCallContext in a C function