HyukjinKwon commented on code in PR #44191:
URL: https://github.com/apache/spark/pull/44191#discussion_r1416900233


##########
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/statsEstimation/BasicStatsEstimationSuite.scala:
##########
@@ -176,6 +176,25 @@ class BasicStatsEstimationSuite extends PlanTest with 
StatsEstimationTestBase {
         expectedStatsCboOff = rangeStats, extraConfig)
   }
 
+  test("range with invalid output") {
+    val numElements = BigInt(Long.MaxValue) - BigInt(Long.MinValue)
+    val range = Range(Long.MinValue, Long.MaxValue, 1, None)
+    val rangeStats = Statistics(
+          sizeInBytes = numElements * 8,

Review Comment:
   Would need to fix the indentation. Has to be 2-spaced



-- 
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