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

    https://github.com/apache/spark/pull/15090#discussion_r79489925
  
    --- 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 --
    
    I just think it is better to test this a bit more thoroughly. The HLL++ 
tests use a similar test.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to