Re: [PATCH] Cleanup of PLpgSQL_recfield

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [PATCH] Cleanup of PLpgSQL_recfield
Дата
Msg-id 27613.1225832272@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [PATCH] Cleanup of PLpgSQL_recfield  ("Jonah H. Harris" <jonah.harris@gmail.com>)
Ответы Re: [PATCH] Cleanup of PLpgSQL_recfield  (Alvaro Herrera <alvherre@commandprompt.com>)
Re: [PATCH] Cleanup of PLpgSQL_recfield  ("Jonah H. Harris" <jonah.harris@gmail.com>)
Список pgsql-hackers
"Jonah H. Harris" <jonah.harris@gmail.com> writes:
> While looking to add some functionality to PL/pgSQL, I found that the
> rfno member of the PLpgSQL_recfield structure is unused.  This patch
> is just a cleanup

No, that'd be wrong.  Note here:

/** PLpgSQL_datum is the common supertype for PLpgSQL_expr, PLpgSQL_var,* PLpgSQL_row, PLpgSQL_rec, PLpgSQL_recfield,
PLpgSQL_arrayelem,and* PLpgSQL_trigarg*/
 
typedef struct
{                                /* Generic datum array item        */   int            dtype;   int            dno;
} PLpgSQL_datum;

I am not real sure why the code is inconsistent about spelling the
second field's name differently in some of the structs, but it seems
like a bad idea --- as you've demonstrated, it invites confusion.
What would probably be better is a patch to rename exprno, rfno, etc
to all be called dno to make this connection more obvious.
        regards, tom lane


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

Предыдущее
От: "Robert Haas"
Дата:
Сообщение: Re: [WIP] In-place upgrade
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: [PATCH] Cleanup of PLpgSQL_recfield