aboutsummaryrefslogtreecommitdiff
path: root/sql/hive
diff options
context:
space:
mode:
authorPete Robbins <robbinspg@gmail.com>2016-10-13 11:26:30 -0700
committerHerman van Hovell <hvanhovell@databricks.com>2016-10-13 11:26:30 -0700
commit84f149e414475c2e60863898992001c21cfc13b2 (patch)
tree8691d6273eb9bb0b74860c56dfd49d9ed4253b59 /sql/hive
parent04d417a7ca8ef694658b26fb697a035717414731 (diff)
downloadspark-84f149e414475c2e60863898992001c21cfc13b2.tar.gz
spark-84f149e414475c2e60863898992001c21cfc13b2.tar.bz2
spark-84f149e414475c2e60863898992001c21cfc13b2.zip
[SPARK-17827][SQL] maxColLength type should be Int for String and Binary
## What changes were proposed in this pull request? correct the expected type from Length function to be Int ## How was this patch tested? Test runs on little endian and big endian platforms Author: Pete Robbins <robbinspg@gmail.com> Closes #15464 from robbinspg/SPARK-17827.
Diffstat (limited to 'sql/hive')
-rw-r--r--sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala2
1 files changed, 1 insertions, 1 deletions
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 99dd080683..85228bb001 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
@@ -378,7 +378,7 @@ class StatisticsSuite extends QueryTest with TestHiveSingleton with SQLTestUtils
ColumnStat(InternalRow(0L, intSeq.max, intSeq.min, intSeq.distinct.length.toLong))
case StringType =>
ColumnStat(InternalRow(0L, stringSeq.map(_.length).sum / stringSeq.length.toDouble,
- stringSeq.map(_.length).max.toLong, stringSeq.distinct.length.toLong))
+ stringSeq.map(_.length).max.toInt, stringSeq.distinct.length.toLong))
case BooleanType =>
ColumnStat(InternalRow(0L, booleanSeq.count(_.equals(true)).toLong,
booleanSeq.count(_.equals(false)).toLong))