diff options
author | Andres Freund | 2019-02-18 19:07:30 +0000 |
---|---|---|
committer | Andres Freund | 2019-02-18 19:07:30 +0000 |
commit | 22bc403029c096639a74d7c91069bf9e8a35460f (patch) | |
tree | b0186a3f499943466ece9dc823538095646097b3 | |
parent | 93b5cc039e2328b7ac256de57a25c810d50a7f29 (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.c | 1 |
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; } |