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
The hash aggregate is currently disabled for cases where there are no resultExpressions. This is something that was missed and has been in the hash aggregate code for a long time.
Prior issues reference the mortgage test as a potential repro case. I can imagine that without much effort this can be fixed and we can remove this special case.
The text was updated successfully, but these errors were encountered:
spark.sql("SELECT c_birth_month, SUM(c_birth_year) as sum_year from customer where c_salutation rlike 'Mr.' group by c_birth_month").count()
Shows this on the TPCDS dataset. Although it is really just a bogus query. Essentially it looks like in this situation there is a count as the output of the query so they don't want to materialize the output. Just get the number of rows of output there would be. So output a batch with no columns, just rows.
The hash aggregate is currently disabled for cases where there are no
resultExpressions
. This is something that was missed and has been in the hash aggregate code for a long time.https://github.com/NVIDIA/spark-rapids/blob/branch-21.12/sql-plugin/src/main/scala/com/nvidia/spark/rapids/aggregate.scala#L872
Prior issues reference the mortgage test as a potential repro case. I can imagine that without much effort this can be fixed and we can remove this special case.
The text was updated successfully, but these errors were encountered: