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

    https://github.com/apache/spark/pull/9517#discussion_r44247087
  
    --- Diff: 
sql/hive/src/test/scala/org/apache/spark/sql/sources/ParquetHadoopFsRelationSuite.scala
 ---
    @@ -155,4 +155,22 @@ class ParquetHadoopFsRelationSuite extends 
HadoopFsRelationTest {
           assert(physicalPlan.collect { case p: execution.Filter => p }.length 
=== 1)
         }
       }
    +
    +  test("SPARK-11500: Not deterministic order of columns when using merging 
schemas.") {
    +    import testImplicits._
    +    withSQLConf(SQLConf.PARQUET_SCHEMA_MERGING_ENABLED.key -> "true") {
    +      withTempPath { dir =>
    +        val pathOne = s"${dir.getCanonicalPath}/table1"
    +        Seq(1, 1).zipWithIndex.toDF("a", "b").write.parquet(pathOne)
    +        val pathTwo = s"${dir.getCanonicalPath}/table2"
    +        Seq(1, 1).zipWithIndex.toDF("c", "b").write.parquet(pathTwo)
    +        val pathThree = s"${dir.getCanonicalPath}/table3"
    +        Seq(1, 1).zipWithIndex.toDF("d", "b").write.parquet(pathThree)
    --- End diff --
    
    Thanks for commands!


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