From: Bruce Momjian Date: Tue, 28 Jan 2014 17:28:14 +0000 (-0500) Subject: Revert C comment change in slot_attisnull() X-Git-Tag: REL9_4_BETA1~603 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c871e8f53bd6dc9249b6d79f2fde34dedb200824;p=postgresql Revert C comment change in slot_attisnull() Revert 89774b58b0ea2874765cae10c094bb6aaf707feb --- diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index 3d8d2eb9a3..aea9d40d14 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -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;