(expr: &Expr)
| 100 | } |
| 101 | |
| 102 | fn unparse_sql_expr(expr: &Expr) -> Result<String> { |
| 103 | let unparser = Unparser::default(); |
| 104 | |
| 105 | let round_trip_sql = unparser.expr_to_sql(expr)?.to_string(); |
| 106 | Ok(round_trip_sql) |
| 107 | } |
no test coverage detected
searching dependent graphs…