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) :
29872987 //boolean ignoreNulls = false;
29882988}
29892989{
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-
29992990 (<K_OVER> {retval.setType(AnalyticType.OVER);}
30002991 | <K_WITHIN> <K_GROUP> {retval.setType(AnalyticType.WITHIN_GROUP);} )
30012992
@@ -3004,12 +2995,6 @@ AnalyticExpression AnalyticExpression(Function function) :
30042995 [olist=OrderByElements() [windowElement = WindowElement() ] ]
30052996
30062997 {
3007- //retval.setDistinct(distinct);
3008- //retval.setIgnoreNulls(ignoreNulls);
3009- //retval.setExpression(expr);
3010- //retval.setOffset(offset);
3011- //retval.setDefaultValue(defaultValue);
3012- //retval.setKeep(keep);
30132998 retval.setPartitionExpressionList(expressionList);
30142999 retval.setOrderByElements(olist);
30153000 retval.setWindowElement(windowElement);
You can’t perform that action at this time.
0 commit comments