diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-01-25 16:43:14 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-01-25 16:43:36 -0500 |
commit | 89774b58b0ea2874765cae10c094bb6aaf707feb (patch) | |
tree | ca7a7f605d2ccedc89edd9f2f70694f4cce102a8 | |
parent | a16c2edcc7d54ae36dc8acec23201b1d2dfc34b0 (diff) | |
download | postgresql-89774b58b0ea2874765cae10c094bb6aaf707feb.tar.gz postgresql-89774b58b0ea2874765cae10c094bb6aaf707feb.zip |
Adjust C comment in slot_attisnull() regarding nulls.
-rw-r--r-- | src/backend/access/common/heaptuple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index aea9d40d149..3d8d2eb9a35 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; |