Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Fix codacy errors
  • Loading branch information
Stefan Steinhauser committed Sep 16, 2024
commit 3e2c46bbf6d0842e1c365e3c92381489e0fe8018
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ void testSelectAndInsertWithin2Ctes() throws JSQLParserException {
"DELETE FROM mytable PREFERRING HIGH mycolumn1 PLUS LOW mycolumn2"
})
public void testPreferringClause(String sqlStr) throws JSQLParserException {
TestUtils.assertSqlCanBeParsedAndDeparsed(sqlStr);
assertSqlCanBeParsedAndDeparsed(sqlStr);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ void testSelectAndInsertWithin2Ctes() throws JSQLParserException {
"UPDATE mytable SET mycolumn1 = mycolumn2 PREFERRING HIGH mycolumn1 PLUS LOW mycolumn2"
})
public void testPreferringClause(String sqlStr) throws JSQLParserException {
TestUtils.assertSqlCanBeParsedAndDeparsed(sqlStr);
assertSqlCanBeParsedAndDeparsed(sqlStr);
}

}