Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
JDBC adapter throws NullPointerException or ClassCastException while generating GROUP BY query for MySQL.
The problem is that MySQL does not support nested aggregates, and if the input to the query is either a table or an un-expected 'select *', the code that looks for the input expression to an aggregate function does not see a SqlSelectNode (and therefore throws ClassCastException) or runs off the end of the un-expanded '*' (giving a NullPointerException).
See test cases in RelToSqlConverterTest.