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

Revert C comment change in slot_attisnull()

Revert 89774b58b0ea2874765cae10c094bb6aaf707feb
This commit is contained in:
Bruce Momjian 2014-01-28 12:28:14 -05:00
parent 051b3341c1
commit c871e8f53b

View File

@ -1342,7 +1342,7 @@ slot_attisnull(TupleTableSlot *slot, int attnum)
return slot->tts_isnull[attnum - 1]; return slot->tts_isnull[attnum - 1];
/* /*
* assume NULL if attnum is out of range according to the tupdesc * return NULL if attnum is out of range according to the tupdesc
*/ */
if (attnum > tupleDesc->natts) if (attnum > tupleDesc->natts)
return true; return true;