Commit 89774b58 authored by Bruce Momjian's avatar Bruce Momjian

Adjust C comment in slot_attisnull() regarding nulls.

parent a16c2edc
......@@ -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;
......
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