Skip to content
Snippets Groups Projects
Commit b45819ac authored by tedyu's avatar tedyu Committed by Davies Liu
Browse files

[SPARK-14856] Correct message in assertion for 'returning batch for wide table'

## What changes were proposed in this pull request?

There was a typo in the message for second assertion in "returning batch for wide table" test

## How was this patch tested?

Existing tests.

Author: tedyu <yuzhihong@gmail.com>

Closes #12639 from tedyu/master.
parent bebb0240
No related branches found
No related tags found
No related merge requests found
......@@ -609,7 +609,7 @@ class ParquetQuerySuite extends QueryTest with ParquetTest with SharedSQLContext
val df3 = df2.selectExpr(columns : _*)
assert(
df3.queryExecution.sparkPlan.find(_.isInstanceOf[BatchedDataSourceScanExec]).isDefined,
"Should not return batch")
"Should return batch")
checkAnswer(df3, df.selectExpr(columns : _*))
}
}
......
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