You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by da...@apache.org on 2016/04/24 01:42:45 UTC

spark git commit: [SPARK-14856] Correct message in assertion for 'returning batch for wide table'

Repository: spark
Updated Branches:
  refs/heads/master bebb0240e -> b45819ac4


[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 <yu...@gmail.com>

Closes #12639 from tedyu/master.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b45819ac
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b45819ac
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b45819ac

Branch: refs/heads/master
Commit: b45819ac43311dc830a97f15d1278936efca1cc1
Parents: bebb024
Author: tedyu <yu...@gmail.com>
Authored: Sat Apr 23 16:42:37 2016 -0700
Committer: Davies Liu <da...@gmail.com>
Committed: Sat Apr 23 16:42:37 2016 -0700

----------------------------------------------------------------------
 .../sql/execution/datasources/parquet/ParquetQuerySuite.scala      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/b45819ac/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
index ed20c45..f1e9726 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetQuerySuite.scala
@@ -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 : _*))
       }
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org