Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/15998#discussion_r90582154
  
    --- Diff: 
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/catalog/ExternalCatalogSuite.scala
 ---
    @@ -346,6 +346,31 @@ abstract class ExternalCatalogSuite extends 
SparkFunSuite with BeforeAndAfterEac
         assert(new Path(partitionLocation) == defaultPartitionLocation)
       }
     
    +  test("list partition names") {
    +    val catalog = newBasicCatalog()
    +    val newPart = CatalogTablePartition(Map("a" -> "1", "b" -> "%="), 
storageFormat)
    +    catalog.createPartitions("db2", "tbl2", Seq(newPart), ignoreIfExists = 
false)
    +
    +    val partitionNames = catalog.listPartitionNames("db2", "tbl2")
    +    assert(partitionNames == Seq("a=1/b=%25%3D", "a=1/b=2", "a=3/b=4"))
    --- End diff --
    
    is it the same behavior as before? i.e. `SHOW PARTITIONS` will output URI 
encoded partition value.


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