| 782 | } |
| 783 | |
| 784 | void |
| 785 | ExecSquelchFunctionScan(FunctionScanState *node, bool force) |
| 786 | { |
| 787 | if (node->ss.ps.squelched) |
| 788 | return; |
| 789 | if (!node->delayEagerFree || force) |
| 790 | { |
| 791 | ExecEagerFreeFunctionScan(node); |
| 792 | node->ss.ps.squelched = true; |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | void |
| 797 | function_scan_create_bufname_prefix(char* p, int size, int initplan_id) |
no test coverage detected