summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund2019-02-18 19:07:30 +0000
committerAndres Freund2019-02-18 19:07:30 +0000
commit22bc403029c096639a74d7c91069bf9e8a35460f (patch)
treeb0186a3f499943466ece9dc823538095646097b3
parent93b5cc039e2328b7ac256de57a25c810d50a7f29 (diff)
Remove line duplicated during conflict resolution.
I included the duplicated ExecTypeFromTL in 578b2297 "Remove WITH OIDS support". Reported-By: Peter Eisentraut Discussion: https://postgr.es/m/ba819888-63c6-7f98-6acb-3731142d9414@2ndquadrant.com
-rw-r--r--src/backend/executor/execTuples.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c
index bc5a5249448..8674b3dcf70 100644
--- a/src/backend/executor/execTuples.c
+++ b/src/backend/executor/execTuples.c
@@ -1604,7 +1604,6 @@ ExecInitResultTypeTL(PlanState *planstate)
{
TupleDesc tupDesc = ExecTypeFromTL(planstate->plan->targetlist);
- tupDesc = ExecTypeFromTL(planstate->plan->targetlist);
planstate->ps_ResultTupleDesc = tupDesc;
}