Github user wzhfy commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15090#discussion_r79329639
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/StatisticsSuite.scala ---
    @@ -101,4 +101,47 @@ class StatisticsSuite extends QueryTest with 
SharedSQLContext {
           checkTableStats(tableName, expectedRowCount = Some(2))
         }
       }
    +
    +  test("test column-level statistics for data source table created in 
InMemoryCatalog") {
    +    def checkColStats(colStats: BasicColStats, expectedColStats: 
BasicColStats): Unit = {
    +      assert(colStats.dataType == expectedColStats.dataType)
    +      assert(colStats.numNulls == expectedColStats.numNulls)
    +      assert(colStats.max == expectedColStats.max)
    +      assert(colStats.min == expectedColStats.min)
    +      if (expectedColStats.ndv.isDefined) {
    +        // ndv is an approximate value, so we just make sure we have the 
value
    +        assert(colStats.ndv.get >= 0)
    --- End diff --
    
    Why 3 standard deviations? I think for tests in this suite, we just need to 
make sure we get the stats, we should leave the accuracy test to 
HyperLogLogPlusPlusSuite, right?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to