Create a column expression
(name: &str, schema: &Schema)
| 129 | |
| 130 | /// Create a column expression |
| 131 | pub(crate) fn col(name: &str, schema: &Schema) -> Result<Arc<dyn PhysicalExpr>> { |
| 132 | Ok(Arc::new(Column::new_with_schema(name, schema)?)) |
| 133 | } |
no test coverage detected