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

    https://github.com/apache/spark/pull/13780#discussion_r67865315
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/DatasetCacheSuite.scala ---
    @@ -21,11 +21,32 @@ import scala.language.postfixOps
     
     import org.apache.spark.sql.functions._
     import org.apache.spark.sql.test.SharedSQLContext
    +import org.apache.spark.storage.StorageLevel
     
     
     class DatasetCacheSuite extends QueryTest with SharedSQLContext {
       import testImplicits._
     
    +  test("get storage level") {
    +    val ds1 = Seq("1", "2").toDS().as("a")
    +    val ds2 = Seq(2, 3).toDS().as("b")
    +
    +    // default storage level
    +    ds1.persist()
    +    ds2.cache()
    +    assert(ds1.storageLevel() == StorageLevel.MEMORY_AND_DISK)
    +    assert(ds2.storageLevel() == StorageLevel.MEMORY_AND_DISK)
    +    // unpersist
    +    ds1.unpersist()
    +    assert(ds1.storageLevel() == StorageLevel.NONE)
    +    // non-default storage level
    +    ds1.persist(StorageLevel.MEMORY_ONLY_2)
    --- End diff --
    
    I knew. : ) That is white box testing. Normally, writing test cases should 
not be done by the same person who wrote the code.


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