(&self, _batch: &RecordBatch)
| 216 | } |
| 217 | |
| 218 | fn evaluate(&self, _batch: &RecordBatch) -> Result<ColumnarValue> { |
| 219 | // TODO: implement this for scalar value input |
| 220 | not_impl_err!("AsyncFuncExpr.evaluate") |
| 221 | } |
| 222 | |
| 223 | fn children(&self) -> Vec<&Arc<dyn PhysicalExpr>> { |
| 224 | self.func.children() |