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

    https://github.com/apache/spark/pull/1346#discussion_r15799720
  
    --- Diff: sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala ---
    @@ -89,6 +88,44 @@ class SQLContext(@transient val sparkContext: 
SparkContext)
         new SchemaRDD(this, 
SparkLogicalPlan(ExistingRdd.fromProductRdd(rdd))(self))
     
       /**
    +   * :: DeveloperApi ::
    +   * Creates a [[SchemaRDD]] from an [[RDD]] containing [[Row]]s by 
applying a schema to this RDD.
    +   * It is important to make sure that the structure of every [[Row]] of 
the provided RDD matches
    +   * the provided schema. Otherwise, there will be runtime exception.
    +   * Example:
    +   * {{{
    +   *  import org.apache.spark.sql._
    +   *  val sqlContext = new org.apache.spark.sql.SQLContext(sc)
    +   *
    +   *  val schema =
    +   *    StructType(
    +   *      StructField("name", StringType, false) ::
    +   *      StructField("age", IntegerType, true) :: Nil)
    +   *
    --- End diff --
    
    o, yep, StructType is needed, i mean
    ```def applySchema(rowRDD: RDD[Row], schema: StructType): SchemaRDD```
    could be
    ```def applySchema(rowRDD: RDD[Row], schema: Seq[StructField]): SchemaRDD```
    
    then we do not need to always use ```schema.fields.map(f => 
AttributeReference...)```
    
    we can direct ```schema.map(f => AttributeReference...)```
    



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