| 186 | const char* kind_name() const override { return "ScanNode"; } |
| 187 | |
| 188 | [[noreturn]] static void NoInputs() { |
| 189 | Unreachable("no inputs; this should never be called"); |
| 190 | } |
| 191 | [[noreturn]] Status InputReceived(acero::ExecNode*, compute::ExecBatch) override { |
| 192 | NoInputs(); |
| 193 | } |
nothing calls this directly
no test coverage detected