(&self, sql: &str, df_schema: &DFSchema)
| 673 | /// ``` |
| 674 | #[cfg(feature = "sql")] |
| 675 | pub fn parse_sql_expr(&self, sql: &str, df_schema: &DFSchema) -> Result<Expr> { |
| 676 | self.state.read().create_logical_expr(sql, df_schema) |
| 677 | } |
| 678 | |
| 679 | /// Execute the [`LogicalPlan`], return a [`DataFrame`]. This API |
| 680 | /// is not featured limited (so all SQL such as `CREATE TABLE` and |
nothing calls this directly
no test coverage detected