From 4d239388933cf27c8cf1dab5ce9ca61b50747aba Mon Sep 17 00:00:00 2001 From: shane knapp Date: Thu, 9 Jan 2020 15:28:45 -0800 Subject: [PATCH] [MINOR][SQL][TEST-HIVE1.2] Fix scalastyle error due to length line in hive-1.2 profile ### What changes were proposed in this pull request? fixing a broken build: https://amplab.cs.berkeley.edu/jenkins/job/spark-master-test-sbt-hadoop-2.7-hive-1.2/3/console ### Why are the changes needed? the build is teh borked! ### Does this PR introduce any user-facing change? newp ### How was this patch tested? by the build system Closes #27156 from shaneknapp/fix-scala-style. Authored-by: shane knapp Signed-off-by: shane knapp --- .../spark/sql/execution/datasources/orc/OrcFilterSuite.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sql/core/v1.2/src/test/scala/org/apache/spark/sql/execution/datasources/orc/OrcFilterSuite.scala b/sql/core/v1.2/src/test/scala/org/apache/spark/sql/execution/datasources/orc/OrcFilterSuite.scala index 526ce5cb70856..47632f40bc5ed 100644 --- a/sql/core/v1.2/src/test/scala/org/apache/spark/sql/execution/datasources/orc/OrcFilterSuite.scala +++ b/sql/core/v1.2/src/test/scala/org/apache/spark/sql/execution/datasources/orc/OrcFilterSuite.scala @@ -255,7 +255,8 @@ class OrcFilterSuite extends OrcTest with SharedSparkSession { checkFilterPredicate($"_1" >= timestamps(3), PredicateLeaf.Operator.LESS_THAN) checkFilterPredicate(Literal(timestamps(0)) === $"_1", PredicateLeaf.Operator.EQUALS) - checkFilterPredicate(Literal(timestamps(0)) <=> $"_1", PredicateLeaf.Operator.NULL_SAFE_EQUALS) + checkFilterPredicate(Literal(timestamps(0)) <=> $"_1", + PredicateLeaf.Operator.NULL_SAFE_EQUALS) checkFilterPredicate(Literal(timestamps(1)) > $"_1", PredicateLeaf.Operator.LESS_THAN) checkFilterPredicate(Literal(timestamps(2)) < $"_1", PredicateLeaf.Operator.LESS_THAN_EQUALS) checkFilterPredicate(Literal(timestamps(0)) >= $"_1", PredicateLeaf.Operator.LESS_THAN_EQUALS)