Skip to content
Snippets Groups Projects
Commit a5f8c9b1 authored by Wenchen Fan's avatar Wenchen Fan
Browse files

[SPARK-14554][SQL][FOLLOW-UP] use checkDataset to check the result

## What changes were proposed in this pull request?

address this comment: https://github.com/apache/spark/pull/12322#discussion_r59417359

## How was this patch tested?

N/A

Author: Wenchen Fan <wenchen@databricks.com>

Closes #12346 from cloud-fan/tmp.
parent 587cd554
No related branches found
No related tags found
No related merge requests found
......@@ -624,7 +624,7 @@ class DatasetSuite extends QueryTest with SharedSQLContext {
test("SPARK-14554: Dataset.map may generate wrong java code for wide table") {
val wideDF = sqlContext.range(10).select(Seq.tabulate(1000) {i => ('id + i).as(s"c$i")} : _*)
// Make sure the generated code for this plan can compile and execute.
wideDF.map(_.getLong(0)).collect()
checkDataset(wideDF.map(_.getLong(0)), 0L until 10 : _*)
}
}
......
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