You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like usage of generics was introduced in an earlier version(probably 4.7?) which made GroupByElements list of Expressions be an ExpressionList<Expression>
However, the method getGroupByExpressionList returns the raw ExpressionList.
This causes problems when iterating through the list, so we need to explicitly cast the returned list to ExpressionList<Expression>
Since the internal List is of ExpressionList I would think the method getGroupByExpressionList should return ExpressionList<Expression> and not the raw ExpressionList
The text was updated successfully, but these errors were encountered:
It looks like usage of generics was introduced in an earlier version(probably 4.7?) which made GroupByElements list of Expressions be an
ExpressionList<Expression>
However, the method getGroupByExpressionList returns the raw ExpressionList.
This causes problems when iterating through the list, so we need to explicitly cast the returned list to
ExpressionList<Expression>
Since the internal List is of ExpressionList I would think the method getGroupByExpressionList should return
ExpressionList<Expression>
and not the raw ExpressionListThe text was updated successfully, but these errors were encountered: