diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index db049cb4413..61a50a847c7 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -476,6 +476,9 @@ typedef struct ResultRelInfo /* Have the projection and the slots above been initialized? */ bool ri_projectNewInfoValid; + /* updates do LockTuple() before oldtup read; see README.tuplock */ + bool ri_needLockTagTuple; + /* triggers to be fired, if any */ TriggerDesc *ri_TrigDesc; @@ -582,9 +585,6 @@ typedef struct ResultRelInfo * one of its ancestors; see ExecCrossPartitionUpdateForeignKey(). */ List *ri_ancestorResultRels; - - /* updates do LockTuple() before oldtup read; see README.tuplock */ - bool ri_needLockTagTuple; } ResultRelInfo; /* ----------------