mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
Adjust C comment in slot_attisnull() regarding nulls.
This commit is contained in:
@ -1342,7 +1342,7 @@ slot_attisnull(TupleTableSlot *slot, int attnum)
|
||||
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)
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user