Re: A minor correction in comment in heaptuple.c

Поиск
Список
Период
Сортировка
От Amit Langote
Тема Re: A minor correction in comment in heaptuple.c
Дата
Msg-id CA+HiwqFm465X645Uv72RUsVagLTqcHpHuXbi7PMpvu8WiMQO+w@mail.gmail.com
обсуждение исходный текст
Ответ на Re: A minor correction in comment in heaptuple.c  (Andres Freund <andres@2ndquadrant.com>)
Список pgsql-hackers
On Tue, Jun 18, 2013 at 6:01 PM, Andres Freund <andres@2ndquadrant.com> wrote:
> Hi,
>
> On 2013-06-18 17:56:34 +0900, Amit Langote wrote:
>> Should it be: "return true if attnum is out of range according to the
>> tupdesc" instead of "return NULL if attnum is out of range according
>> to the tupdesc" at src/backend/access/common/heaptuple.c: 1345
>>
>> /*
>>  * return true if attnum is out of range according to the tupdesc
>> */
>> if (attnum > tupleDesc->natts)
>> return true;
>
> Well, true actually tells us that the attribute is null, since that's
> the purpose of the function:
>
> /*
>  * slot_attisnull
>  *              Detect whether an attribute of the slot is null, without
>  *              actually fetching it.
>  */
>
> I think the comment is more meaningfull before the change since it tells
> us how nonexisting columns are interpreted.
>

Okay, that makes sense.


--
Amit Langote



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

Предыдущее
От: Andres Freund
Дата:
Сообщение: Re: A minor correction in comment in heaptuple.c
Следующее
От: "D'Arcy J.M. Cain"
Дата:
Сообщение: Re: A minor correction in comment in heaptuple.c