forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitc6843fe
Remove obsolete executor cleanup code
This commit removes unnecessary ExecExprFreeContext() calls inExecEnd* routines because the actual cleanup is managed byFreeExecutorState(). With no callers remaining forExecExprFreeContext(), this commit also removes the function.This commit also drops redundant ExecClearTuple() calls, becauseExecResetTupleTable() in ExecEndPlan() already takes care ofresetting and dropping all TupleTableSlots initialized withExecInitScanTupleSlot() and ExecInitExtraTupleSlot().After these modifications, the ExecEnd*() routines for ValuesScan,NamedTuplestoreScan, and WorkTableScan became redundant. So, thiscommit removes them.Reviewed-by: Robert HaasDiscussion:https://postgr.es/m/CA+HiwqFGkMSge6TgC9KQzde0ohpAycLQuV7ooitEEpbKB0O_mg@mail.gmail.com1 parent097607e commitc6843fe
File tree
42 files changed
+6
-419
lines changed- src
- backend/executor
- include/executor
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
42 files changed
+6
-419
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
667 | 667 |
| |
668 | 668 |
| |
669 | 669 |
| |
670 |
| - | |
671 |
| - | |
672 |
| - | |
673 |
| - | |
674 | 670 |
| |
675 | 671 |
| |
676 | 672 |
| |
677 | 673 |
| |
678 |
| - | |
679 |
| - | |
680 |
| - | |
681 |
| - | |
682 |
| - | |
683 |
| - | |
684 |
| - | |
685 |
| - | |
686 | 674 |
| |
687 | 675 |
| |
688 | 676 |
| |
| |||
757 | 745 |
| |
758 | 746 |
| |
759 | 747 |
| |
| 748 | + | |
| 749 | + | |
| 750 | + | |
| 751 | + | |
| 752 | + | |
| 753 | + | |
760 | 754 |
| |
761 | 755 |
| |
762 | 756 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
638 | 638 |
| |
639 | 639 |
| |
640 | 640 |
| |
641 |
| - | |
642 |
| - | |
643 |
| - | |
644 |
| - | |
645 |
| - | |
646 |
| - | |
647 |
| - | |
648 |
| - | |
649 |
| - | |
650 |
| - | |
651 |
| - | |
652 |
| - | |
653 |
| - | |
654 |
| - | |
655 |
| - | |
656 |
| - | |
657 |
| - | |
658 |
| - | |
659 |
| - | |
660 |
| - | |
661 |
| - | |
662 |
| - | |
663 |
| - | |
664 |
| - | |
665 |
| - | |
666 |
| - | |
667 | 641 |
| |
668 | 642 |
| |
669 | 643 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
4357 | 4357 |
| |
4358 | 4358 |
| |
4359 | 4359 |
| |
4360 |
| - | |
4361 |
| - | |
4362 |
| - | |
4363 |
| - | |
4364 |
| - | |
4365 |
| - | |
4366 |
| - | |
4367 |
| - | |
4368 |
| - | |
4369 |
| - | |
4370 | 4360 |
| |
4371 | 4361 |
| |
4372 | 4362 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
655 | 655 |
| |
656 | 656 |
| |
657 | 657 |
| |
658 |
| - | |
659 |
| - | |
660 |
| - | |
661 |
| - | |
662 |
| - | |
663 |
| - | |
664 |
| - | |
665 |
| - | |
666 |
| - | |
667 |
| - | |
668 |
| - | |
669 |
| - | |
670 | 658 |
| |
671 | 659 |
| |
672 | 660 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
184 | 184 |
| |
185 | 185 |
| |
186 | 186 |
| |
187 |
| - | |
188 |
| - | |
189 |
| - | |
190 |
| - | |
191 |
| - | |
192 |
| - | |
193 |
| - | |
194 |
| - | |
195 | 187 |
| |
196 | 188 |
| |
197 | 189 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
287 | 287 |
| |
288 | 288 |
| |
289 | 289 |
| |
290 |
| - | |
291 |
| - | |
292 |
| - | |
293 |
| - | |
294 |
| - | |
295 |
| - | |
296 |
| - | |
297 |
| - | |
298 |
| - | |
299 |
| - | |
300 |
| - | |
301 |
| - | |
302 | 290 |
| |
303 | 291 |
| |
304 | 292 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
129 | 129 |
| |
130 | 130 |
| |
131 | 131 |
| |
132 |
| - | |
133 |
| - | |
134 |
| - | |
135 |
| - | |
136 |
| - | |
137 |
| - | |
138 |
| - | |
139 | 132 |
| |
140 | 133 |
| |
141 | 134 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
312 | 312 |
| |
313 | 313 |
| |
314 | 314 |
| |
315 |
| - | |
316 |
| - | |
317 |
| - | |
318 |
| - | |
319 |
| - | |
320 |
| - | |
321 |
| - | |
322 |
| - | |
323 | 315 |
| |
324 | 316 |
| |
325 | 317 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
523 | 523 |
| |
524 | 524 |
| |
525 | 525 |
| |
526 |
| - | |
527 |
| - | |
528 |
| - | |
529 |
| - | |
530 |
| - | |
531 |
| - | |
532 |
| - | |
533 |
| - | |
534 |
| - | |
535 |
| - | |
536 |
| - | |
537 |
| - | |
538 | 526 |
| |
539 | 527 |
| |
540 | 528 |
| |
541 | 529 |
| |
542 | 530 |
| |
543 | 531 |
| |
544 | 532 |
| |
545 |
| - | |
546 |
| - | |
547 |
| - | |
548 | 533 |
| |
549 | 534 |
| |
550 | 535 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
250 | 250 |
| |
251 | 251 |
| |
252 | 252 |
| |
253 |
| - | |
254 |
| - | |
255 |
| - | |
256 | 253 |
| |
257 | 254 |
| |
258 | 255 |
| |
|
0 commit comments
Comments
(0)