projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a16c2ed
)
Adjust C comment in slot_attisnull() regarding nulls.
author
Bruce Momjian
<bruce@momjian.us>
Sat, 25 Jan 2014 21:43:14 +0000
(16:43 -0500)
committer
Bruce Momjian
<bruce@momjian.us>
Sat, 25 Jan 2014 21:43:36 +0000
(16:43 -0500)
src/backend/access/common/heaptuple.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/access/common/heaptuple.c
b/src/backend/access/common/heaptuple.c
index aea9d40d14970bb9472d9cbcfe0d1a6ad6551a0c..3d8d2eb9a35fe1768c211565ce1f8b74ed6576b0 100644
(file)
--- 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;