From 89774b58b0ea2874765cae10c094bb6aaf707feb Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 25 Jan 2014 16:43:14 -0500 Subject: [PATCH] Adjust C comment in slot_attisnull() regarding nulls. --- src/backend/access/common/heaptuple.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0