diff options
Diffstat (limited to 'src/backend/commands/matview.c')
-rw-r--r-- | src/backend/commands/matview.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/commands/matview.c b/src/backend/commands/matview.c index 9ec13d09846..6d09b755564 100644 --- a/src/backend/commands/matview.c +++ b/src/backend/commands/matview.c @@ -476,7 +476,6 @@ static bool transientrel_receive(TupleTableSlot *slot, DestReceiver *self) { DR_transientrel *myState = (DR_transientrel *) self; - bool insertIndexes; /* * Note that the input slot might not be of the type of the target @@ -491,8 +490,7 @@ transientrel_receive(TupleTableSlot *slot, DestReceiver *self) slot, myState->output_cid, myState->ti_options, - myState->bistate, - &insertIndexes); + myState->bistate); /* We know this is a newly created relation, so there are no indexes */ |