Skip to content

Commit

Permalink
Remove extra whitespace in DEFAULT VALUES ON CONFLICT test
Browse files Browse the repository at this point in the history
apache#1037 removed the extra
whitespace, so we need to remove it here as well now.
  • Loading branch information
CDThomas committed Nov 20, 2023
1 parent cc9cc5f commit 63f8a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sqlparser_common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ fn parse_insert_default_values() {
}

let insert_with_default_values_and_on_conflict =
verified_stmt("INSERT INTO test_table DEFAULT VALUES ON CONFLICT DO NOTHING");
verified_stmt("INSERT INTO test_table DEFAULT VALUES ON CONFLICT DO NOTHING");

match insert_with_default_values_and_on_conflict {
Statement::Insert {
Expand Down

0 comments on commit 63f8a6c

Please sign in to comment.