File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
src/main/jjtree/net/sf/jsqlparser/parser Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -2987,15 +2987,6 @@ AnalyticExpression AnalyticExpression(Function function) :
2987
2987
//boolean ignoreNulls = false;
2988
2988
}
2989
2989
{
2990
- /* token=<S_IDENTIFIER> { retval.setName(token.image); }
2991
- "(" [
2992
- [ <K_DISTINCT> {distinct = true;} ]
2993
- (expr=SimpleExpression() ["," offset=SimpleExpression() ["," defaultValue=SimpleExpression() ]] | "*" { retval.setAllColumns(true); } )
2994
- [ <K_IGNORE> <K_NULLS> {ignoreNulls = true;}]
2995
- ] ")" */
2996
-
2997
- /* [ keep=KeepExpression() ] */
2998
-
2999
2990
(<K_OVER> {retval.setType(AnalyticType.OVER);}
3000
2991
| <K_WITHIN> <K_GROUP> {retval.setType(AnalyticType.WITHIN_GROUP);} )
3001
2992
@@ -3004,12 +2995,6 @@ AnalyticExpression AnalyticExpression(Function function) :
3004
2995
[olist=OrderByElements() [windowElement = WindowElement() ] ]
3005
2996
3006
2997
{
3007
- //retval.setDistinct(distinct);
3008
- //retval.setIgnoreNulls(ignoreNulls);
3009
- //retval.setExpression(expr);
3010
- //retval.setOffset(offset);
3011
- //retval.setDefaultValue(defaultValue);
3012
- //retval.setKeep(keep);
3013
2998
retval.setPartitionExpressionList(expressionList);
3014
2999
retval.setOrderByElements(olist);
3015
3000
retval.setWindowElement(windowElement);
You can’t perform that action at this time.
0 commit comments