Commit c871e8f5 authored by Bruce Momjian's avatar Bruce Momjian

Revert C comment change in slot_attisnull()

Revert 89774b58
parent 051b3341
......@@ -1342,7 +1342,7 @@ slot_attisnull(TupleTableSlot *slot, int attnum)
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)
return true;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment