From: Bruce Momjian Date: Sat, 25 Jan 2014 21:43:14 +0000 (-0500) Subject: Adjust C comment in slot_attisnull() regarding nulls. X-Git-Url: http://git.postgresql.org/gitweb/backend_dirs.html?a=commitdiff_plain;h=89774b58b0ea2874765cae10c094bb6aaf707feb;p=users%2Fc2main%2Fpostgres.git Adjust C comment in slot_attisnull() regarding nulls. --- diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index aea9d40d14..3d8d2eb9a3 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]; /* - * 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;