aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2014-01-28 12:28:14 -0500
committerBruce Momjian <bruce@momjian.us>2014-01-28 12:28:14 -0500
commitc871e8f53bd6dc9249b6d79f2fde34dedb200824 (patch)
tree881c5cc7c85f99e9cfe4f99b97b46da43ed0237c /src
parent051b3341c1e8be67ec41a6d60dbb2a1df5582ca2 (diff)
downloadpostgresql-c871e8f53bd6dc9249b6d79f2fde34dedb200824.tar.gz
postgresql-c871e8f53bd6dc9249b6d79f2fde34dedb200824.zip
Revert C comment change in slot_attisnull()
Revert 89774b58b0ea2874765cae10c094bb6aaf707feb
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/common/heaptuple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c
index 3d8d2eb9a35..aea9d40d149 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;