Skip to content
Merged
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
Closes #1583, removed unnecessary local variable.
  • Loading branch information
d2a-raudenaerde committed Jul 7, 2022
commit bb78fd8a9a5e7f4e769ba07776200c79aedb08a9
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ public void testTruncatePostgresqlWithoutTableName() throws Exception {
assertEquals("TRUNCATE TABLE MYSCHEMA.MYTAB", truncate.toString().toUpperCase());

statement = "TRUncATE mytab";
String toStringStatement = "TRUncATE mytab";
truncate = (Truncate) parserManager.parse(new StringReader(statement));
assertEquals("mytab", truncate.getTable().getName());
assertEquals("TRUNCATE TABLE MYTAB", truncate.toString().toUpperCase());
Expand Down