datafusion-sqlparse/tests
Nickolay Ponomarev a1da7b4005 Reduce differences between "generic" and "postgresql" tests
Mainly by replacing `assert_eq!(sql, ast.to_string())` with a call to
the recently introduced `verified()` helper or using `parses_to()` where
the expected serialization differs from the original SQL string.

There was one case (parse_implicit_join), where the inputs were different:
let sql = "SELECT * FROM t1,t2";
//vs
let sql = "SELECT * FROM t1, t2";

and since we don't test the whitespace handling in other tests, I just
used the canonical representation as input.
2019-01-20 19:14:53 +03:00
..
sqlparser_ansi.rs cargo fmt, fix compiler warnings 2018-12-16 13:57:01 -07:00
sqlparser_generic.rs Reduce differences between "generic" and "postgresql" tests 2019-01-20 19:14:53 +03:00
sqlparser_postgres.rs Reduce differences between "generic" and "postgresql" tests 2019-01-20 19:14:53 +03:00