Created
June 5, 2019 14:47
-
-
Save masayuki038/36def0efdfc76de37c4e1bcc13702b65 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public class SqlSelect extends SqlCall { | |
//~ Static fields/initializers --------------------------------------------- | |
// constants representing operand positions | |
public static final int FROM_OPERAND = 2; | |
public static final int WHERE_OPERAND = 3; | |
public static final int HAVING_OPERAND = 5; | |
SqlNodeList keywordList; | |
SqlNodeList selectList; | |
SqlNode from; | |
SqlNode where; | |
SqlNodeList groupBy; | |
SqlNode having; | |
SqlNodeList windowDecls; | |
SqlNodeList orderBy; | |
SqlNode offset; | |
SqlNode fetch; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment