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
Trying to tackle the biggish ones first. It looks like the majority of the problems here are with spark.sql.ansi.enabled=true. The tests are passing, with ANSI mode disabled:
=============== 1661 passed, 435 warnings in 1137.02s (0:18:57) ================
FixesNVIDIA#11018.
This commit fixes the hash aggregate tests that fail with ANSI enabled.
These tests fail most visibly on Spark 4.0, where ANSI mode is enabled by default.
Signed-off-by: MithunR <[email protected]>
)
* Fix hash-aggregate tests failing in ANSI mode
Fixes#11018.
This commit fixes the tests in `hash_aggregate_test.py` to run correctly when run with ANSI enabled. This is essential for running the tests with Spark 4.0, where ANSI mode is on by default.
A vast majority of the tests here happen to exercise aggregations like `SUM`, `COUNT`, `AVG`, etc. which fall to CPU, on account of #5114. These tests have been marked with `@disable_ansi_mode`, so that they run to completion correctly. These may be revisited after #5114 has been addressed.
In cases where #5114 does not apply, the tests have been modified to run with ANSI on and off.
---------
Signed-off-by: MithunR <[email protected]>
The text was updated successfully, but these errors were encountered: