We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75cb98e commit bbd32edCopy full SHA for bbd32ed
src/test_utils.rs
@@ -193,12 +193,7 @@ impl TestedDialects {
193
sql: &str,
194
canonical: &str,
195
) -> Vec<Statement> {
196
- let sql_without_semicolons = sql
197
- .replace("; ", " ")
198
- .replace(" ;", " ")
199
- .replace(";\n", "\n")
200
- .replace("\n;", "\n")
201
- .replace(";", " ");
+ let sql_without_semicolons = sql.replace(";", " ");
202
let statements = self
203
.parse_sql_statements(&sql_without_semicolons)
204
.expect(&sql_without_semicolons);
0 commit comments