chore: remove redundant punctuation (#1434)

This commit is contained in:
Fischer 2024-09-21 00:39:17 +08:00 committed by GitHub
parent 04a53e5753
commit 71318df8b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 16 additions and 16 deletions

View file

@ -487,7 +487,7 @@ fn parse_convert() {
let error_sql = "SELECT CONVERT(INT, 'foo',) FROM T";
assert_eq!(
ParserError::ParserError("Expected: an expression:, found: )".to_owned()),
ParserError::ParserError("Expected: an expression, found: )".to_owned()),
ms().parse_sql_statements(error_sql).unwrap_err()
);
}