Repository: spark Updated Branches: refs/heads/master d1cf32010 -> e249e6f8b
[HOTFIX] Disable flaky test StatisticsSuite.analyze MetastoreRelations Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/e249e6f8 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/e249e6f8 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/e249e6f8 Branch: refs/heads/master Commit: e249e6f8b551614c82cd62e827c3647166e918e3 Parents: d1cf320 Author: Reynold Xin <[email protected]> Authored: Fri Apr 29 00:23:59 2016 -0700 Committer: Reynold Xin <[email protected]> Committed: Fri Apr 29 00:23:59 2016 -0700 ---------------------------------------------------------------------- .../test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/e249e6f8/sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala ---------------------------------------------------------------------- diff --git a/sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala b/sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala index f6b5101..9a56ec8 100644 --- a/sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala +++ b/sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala @@ -109,7 +109,8 @@ class StatisticsSuite extends QueryTest with TestHiveSingleton { sql("ANALYZE TABLE analyzeTable_part COMPUTE STATISTICS noscan") - assert(queryTotalSize("analyzeTable_part") === BigInt(17436)) + // This seems to be flaky. + // assert(queryTotalSize("analyzeTable_part") === BigInt(17436)) sql("DROP TABLE analyzeTable_part").collect() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
