File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
Original file line number Diff line number Diff line change @@ -121,7 +121,6 @@ tqueueReceiveSlot(TupleTableSlot *slot, DestReceiver *self)
121
121
TQueueDestReceiver * tqueue = (TQueueDestReceiver * ) self ;
122
122
TupleDesc tupledesc = slot -> tts_tupleDescriptor ;
123
123
HeapTuple tuple ;
124
- HeapTupleHeader tup ;
125
124
126
125
/*
127
126
* Test to see whether the tupledesc has changed; if so, set up for the
@@ -140,7 +139,6 @@ tqueueReceiveSlot(TupleTableSlot *slot, DestReceiver *self)
140
139
}
141
140
142
141
tuple = ExecMaterializeSlot (slot );
143
- tup = tuple -> t_data ;
144
142
145
143
/*
146
144
* When, because of the types being transmitted, no record typemod mapping
@@ -609,7 +607,6 @@ TupleQueueRemapTuple(TupleQueueReader *reader, TupleDesc tupledesc,
609
607
{
610
608
Datum * values ;
611
609
bool * isnull ;
612
- bool dirty = false;
613
610
int i ;
614
611
615
612
/*
@@ -631,7 +628,6 @@ TupleQueueRemapTuple(TupleQueueReader *reader, TupleDesc tupledesc,
631
628
if (isnull [i ] || remapinfo -> mapping [i ] == TQUEUE_REMAP_NONE )
632
629
continue ;
633
630
values [i ] = TupleQueueRemap (reader , remapinfo -> mapping [i ], values [i ]);
634
- dirty = true;
635
631
}
636
632
637
633
/* Reform the modified tuple. */
You can’t perform that action at this time.
0 commit comments