mirror of
https://github.com/postgres/postgres.git
synced 2025-05-03 22:24:49 +03:00
Adjust C comment in slot_attisnull() regarding nulls.
This commit is contained in:
parent
a16c2edcc7
commit
89774b58b0
@ -1342,7 +1342,7 @@ slot_attisnull(TupleTableSlot *slot, int attnum)
|
|||||||
return slot->tts_isnull[attnum - 1];
|
return slot->tts_isnull[attnum - 1];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* return NULL if attnum is out of range according to the tupdesc
|
* assume NULL if attnum is out of range according to the tupdesc
|
||||||
*/
|
*/
|
||||||
if (attnum > tupleDesc->natts)
|
if (attnum > tupleDesc->natts)
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user