dtenedor commented on a change in pull request #35735:
URL: https://github.com/apache/spark/pull/35735#discussion_r821922513



##########
File path: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/aggregate/HistogramNumericSuite.scala
##########
@@ -52,7 +57,8 @@ class HistogramNumericSuite extends SparkFunSuite {
     assert(compareEquals(buffer,
       
NumericHistogramSerializer.deserialize(NumericHistogramSerializer.serialize(buffer))))
 
-    val agg = new HistogramNumeric(BoundReference(0, DoubleType, true), 
Literal(5))
+    val agg = new HistogramNumeric(
+      BoundReference(0, DoubleType, true), Literal(5))

Review comment:
       Done.

##########
File path: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/aggregate/HistogramNumericSuite.scala
##########
@@ -87,7 +92,8 @@ class HistogramNumericSuite extends SparkFunSuite {
 
   test("class HistogramNumeric, fails analysis if nBins is not a constant") {
     val attribute = AttributeReference("a", IntegerType)()
-    val wrongNB = new HistogramNumeric(attribute, nBins = 
AttributeReference("b", IntegerType)())
+    val wrongNB = new HistogramNumeric(
+      attribute, nBins = AttributeReference("b", IntegerType)())

Review comment:
       Done.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to