1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Adjust C comment in slot_attisnull() regarding nulls.

This commit is contained in:
Bruce Momjian 2014-01-25 16:43:14 -05:00
parent a16c2edcc7
commit 89774b58b0

View File

@ -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;