-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
3,453 additions
and
2,920 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
src/main/java/halo/dal/analysis/antlr/MockAntlrParserDelegate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
package halo.dal.analysis.antlr; | ||
|
||
import java.util.List; | ||
|
||
|
||
public class MockAntlrParserDelegate implements AntlrParserDelegate { | ||
|
||
public void setSqlOp(int sqlOp) { | ||
// TODO Auto-generated method stub | ||
} | ||
|
||
public int getSqlOp() { | ||
// TODO Auto-generated method stub | ||
return 0; | ||
} | ||
|
||
public void setHasSelectFrom(boolean hasSelectFrom) { | ||
// TODO Auto-generated method stub | ||
} | ||
|
||
public boolean isHasSelectFrom() { | ||
// TODO Auto-generated method stub | ||
return false; | ||
} | ||
|
||
public void setHasBetweenAnd(boolean hasBetweenAnd) { | ||
// TODO Auto-generated method stub | ||
} | ||
|
||
public boolean isHasBetweenAnd() { | ||
// TODO Auto-generated method stub | ||
return false; | ||
} | ||
|
||
public void onFindTable(String name, String alias) { | ||
// TODO Auto-generated method stub | ||
} | ||
|
||
public void onFindColExper(String column, String op) { | ||
// TODO Auto-generated method stub | ||
} | ||
|
||
public List<Table> getTables() { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
|
||
public List<ColExpr> getColExprs() { | ||
// TODO Auto-generated method stub | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.