Skip to content

Instantly share code, notes, and snippets.

@masayuki038
Created June 5, 2019 14:47
Show Gist options
  • Save masayuki038/36def0efdfc76de37c4e1bcc13702b65 to your computer and use it in GitHub Desktop.
Save masayuki038/36def0efdfc76de37c4e1bcc13702b65 to your computer and use it in GitHub Desktop.
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