(sql: &str)
| 474 | } |
| 475 | |
| 476 | pub fn parse_sql_into_expr(sql: &str) -> Result<ExprWithAlias, DataFusionError> { |
| 477 | DFParserBuilder::new(sql).build()?.parse_into_expr() |
| 478 | } |
| 479 | |
| 480 | pub fn parse_sql_into_expr_with_dialect( |
| 481 | sql: &str, |
nothing calls this directly
no test coverage detected