Skip to content

Commit

Permalink
format code
Browse files Browse the repository at this point in the history
  • Loading branch information
chakkk309 committed Nov 2, 2023
1 parent 9dd553e commit e3376cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1344,10 +1344,10 @@ public ASTNode visitAlterType(final AlterTypeContext ctx) {
public ASTNode visitCreateJava(final CreateJavaContext ctx) {
return new OracleCreateJavaStatement();
}

@Override
public ASTNode visitSwitch(final SwitchContext ctx) {
return new OracleSwitchStatement();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ public enum SQLVisitorRule {
PLSQL_BLOCK("PlsqlBlock", SQLStatementType.DDL),

SWITCH("Switch", SQLStatementType.DDL);

private final String name;

@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1719,7 +1719,7 @@ public final class RootSQLParserTestCases {

@XmlElement(name = "switch")
private final List<SwitchStatementTestCase> switchStatementTestCases = new LinkedList<>();

/**
* Get all SQL parser test cases.
*
Expand Down

0 comments on commit e3376cf

Please sign in to comment.