Skip to content

Commit c871e8f

Browse files
committed
Revert C comment change in slot_attisnull()
Revert 89774b5
1 parent 051b334 commit c871e8f

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-
* assume NULL if attnum is out of range according to the tupdesc
1345+
* return 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)