You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2019/03/14 23:04:07 UTC

[GitHub] [spark] dongjoon-hyun opened a new pull request #24098: [SPARK-27166][SQL] Improve `printSchema` to print up to the given level

dongjoon-hyun opened a new pull request #24098: [SPARK-27166][SQL] Improve `printSchema` to print up to the given level
URL: https://github.com/apache/spark/pull/24098
 
 
   ## What changes were proposed in this pull request?
   
   This PR aims to improve `printSchema` to be able to print up to the given level of the schema.
   
   ```scala
   scala> val df = Seq((1,(2,(3,4)))).toDF
   df: org.apache.spark.sql.DataFrame = [_1: int, _2: struct<_1: int, _2: struct<_1: int, _2: int>>]
   
   scala> df.printSchema
   root
   |-- _1: integer (nullable = false)
   |-- _2: struct (nullable = true)
   | |-- _1: integer (nullable = false)
   | |-- _2: struct (nullable = true)
   | | |-- _1: integer (nullable = false)
   | | |-- _2: integer (nullable = false)
   
   scala> df.printSchema(1)
   root
   |-- _1: integer (nullable = false)
   |-- _2: struct (nullable = true)
   
   scala> df.printSchema(2)
   root
   |-- _1: integer (nullable = false)
   |-- _2: struct (nullable = true)
   | |-- _1: integer (nullable = false)
   | |-- _2: struct (nullable = true)
   
   scala> df.printSchema(3)
   root
   |-- _1: integer (nullable = false)
   |-- _2: struct (nullable = true)
   | |-- _1: integer (nullable = false)
   | |-- _2: struct (nullable = true)
   | | |-- _1: integer (nullable = false)
   | | |-- _2: integer (nullable = false)
   ```
   
   ## How was this patch tested?
   
   Pass the Jenkins with the newly added test case.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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