Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 89774b5

Browse files
committed
Adjust C comment in slot_attisnull() regarding nulls.
1 parent a16c2ed commit 89774b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/access/common/heaptuple.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ slot_attisnull(TupleTableSlot *slot, int attnum)
13421342
return slot->tts_isnull[attnum - 1];
13431343

13441344
/*
1345-
* return NULL if attnum is out of range according to the tupdesc
1345+
* assume NULL if attnum is out of range according to the tupdesc
13461346
*/
13471347
if (attnum > tupleDesc->natts)
13481348
return true;

0 commit comments

Comments
 (0)