| 66 | } |
| 67 | |
| 68 | std::unique_ptr<TableFunction> FTableScan::getFunction() { |
| 69 | auto function = std::make_unique<TableFunction>(name, std::vector<LogicalTypeID>{}); |
| 70 | function->tableFunc = tableFunc; |
| 71 | function->initSharedStateFunc = initSharedState; |
| 72 | function->initLocalStateFunc = TableFunction::initEmptyLocalState; |
| 73 | function->initOutputFunc = initFTableScanOutput; |
| 74 | return function; |
| 75 | } |
| 76 | |
| 77 | } // namespace processor |
| 78 | } // namespace lbug |
no outgoing calls
no test coverage detected