| 687 | */ |
| 688 | #if 0 |
| 689 | static TupleTableSlot * |
| 690 | ExecProcNodeInstr(PlanState *node) |
| 691 | { |
| 692 | TupleTableSlot *result; |
| 693 | |
| 694 | InstrStartNode(node->instrument); |
| 695 | |
| 696 | result = node->ExecProcNodeReal(node); |
| 697 | |
| 698 | InstrStopNode(node->instrument, TupIsNull(result) ? 0.0 : 1.0); |
| 699 | |
| 700 | return result; |
| 701 | } |
| 702 | #endif |
| 703 | |
| 704 | /* ---------------------------------------------------------------- |
nothing calls this directly
no test coverage detected