Skip to content
Snippets Groups Projects
Commit cbb634ae authored by Daoyuan Wang's avatar Daoyuan Wang Committed by Michael Armbrust
Browse files

[SQL] enable empty aggr test case

This is fixed by SPARK-4318 #3184

Author: Daoyuan Wang <daoyuan.wang@intel.com>

Closes #3445 from adrian-wang/emptyaggr and squashes the following commits:

982575e [Daoyuan Wang] enable empty aggr test case
parent acb3be6b
No related branches found
No related tags found
No related merge requests found
......@@ -319,10 +319,8 @@ class HiveQuerySuite extends HiveComparisonTest with BeforeAndAfter {
createQueryTest("DISTINCT",
"SELECT DISTINCT key, value FROM src")
ignore("empty aggregate input") {
createQueryTest("empty aggregate input",
"SELECT SUM(key) FROM (SELECT * FROM src LIMIT 0) a")
}
createQueryTest("empty aggregate input",
"SELECT SUM(key) FROM (SELECT * FROM src LIMIT 0) a")
createQueryTest("lateral view1",
"SELECT tbl.* FROM src LATERAL VIEW explode(array(1,2)) tbl as a")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment