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 12061fa commit e517882
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ public ASTNode visitAlterType(final AlterTypeContext ctx) {
public ASTNode visitCreateJava(final CreateJavaContext ctx) {
return new OracleCreateJavaStatement();
}

@Override
public ASTNode visitCreateLibrary(final CreateLibraryContext ctx) {
return new OracleCreateLibraryStatement();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ public enum SQLVisitorRule {
PLSQL_BLOCK("PlsqlBlock", SQLStatementType.DDL),

CREATE_LIBRARY("CreateLibrary", 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 = "create-library")
private final List<CreateLibraryStatementTestCase> createLibraryStatementTestCases = new LinkedList<>();

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

0 comments on commit e517882

Please sign in to comment.