Github user stephend-realitymine commented on a diff in the pull request:

    https://github.com/apache/spark/pull/9249#discussion_r42979119
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/json/JsonSuite.scala
 ---
    @@ -632,6 +632,39 @@ class JsonSuite extends QueryTest with 
SharedSQLContext with TestJsonData {
         )
       }
     
    +  test("Loading a JSON dataset primitivesAsString returns schema with 
primitive types as strings") {
    +    val dir = Utils.createTempDir()
    +    dir.delete()
    +    val path = dir.getCanonicalPath
    +    primitiveFieldAndType.map(record => record.replaceAll("\n", " 
")).saveAsTextFile(path)
    +    val jsonDF = sqlContext.read.option("primitivesAsString", 
"true").json(path)
    +
    +    val expectedSchema = StructType(
    +      StructField("bigInteger", DecimalType(20, 0), true) ::
    +      StructField("boolean", BooleanType, true) ::
    +      StructField("double", DoubleType, true) ::
    +      StructField("integer", LongType, true) ::
    +      StructField("long", LongType, true) ::
    +      StructField("null", StringType, true) ::
    +      StructField("string", StringType, true) :: Nil)
    --- End diff --
    
    Yes you are correct this should be ```StringType``` I will also add the 
test for complex types as you have suggested. 


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