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

    https://github.com/apache/spark/pull/10125#discussion_r63900108
  
    --- Diff: 
sql/core/src/test/java/test/org/apache/spark/sql/JavaDataFrameSuite.java ---
    @@ -163,7 +168,9 @@ void validateDataFrameWithBeans(Bean bean, Dataset<Row> 
df) {
         Assert.assertEquals(
           new StructField("d", new ArrayType(DataTypes.StringType, true), 
true, Metadata.empty()),
           schema.apply("d"));
    -    Row first = df.select("a", "b", "c", "d").first();
    +    Assert.assertEquals(new StructField("e", 
DataTypes.createDecimalType(38,0), true, Metadata.empty()),
    +      schema.apply("e"));
    +    Row first = df.select("a", "b", "c", "d","e").first();
    --- End diff --
    
    will add


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