diff options
Diffstat (limited to 'src/include/nodes/execnodes.h')
-rw-r--r-- | src/include/nodes/execnodes.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 40fb8243ab4..2bffa4be6cd 100644 --- a/src/include/nodes/execnodes.h +++ b/src/include/nodes/execnodes.h @@ -1377,7 +1377,6 @@ typedef struct TidScanState bool tss_isCurrentOf; int tss_NumTids; int tss_TidPtr; - int tss_MarkTidPtr; ItemPointerData *tss_TidList; HeapTupleData tss_htup; } TidScanState; @@ -1435,7 +1434,6 @@ typedef struct FunctionScanState * exprlists array of expression lists being evaluated * array_len size of array * curr_idx current array index (0-based) - * marked_idx marked position (for mark/restore) * * Note: ss.ps.ps_ExprContext is used to evaluate any qual or projection * expressions attached to the node. We create a second ExprContext, @@ -1451,7 +1449,6 @@ typedef struct ValuesScanState List **exprlists; int array_len; int curr_idx; - int marked_idx; } ValuesScanState; /* ---------------- |