[ 
https://issues.apache.org/jira/browse/SPARK-20914?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16038518#comment-16038518
 ] 

Apache Spark commented on SPARK-20914:
--------------------------------------

User 'srowen' has created a pull request for this issue:
https://github.com/apache/spark/pull/18215

> Javadoc contains code that is invalid
> -------------------------------------
>
>                 Key: SPARK-20914
>                 URL: https://issues.apache.org/jira/browse/SPARK-20914
>             Project: Spark
>          Issue Type: Improvement
>          Components: Documentation
>    Affects Versions: 2.1.1
>            Reporter: Cristian Teodor
>            Priority: Trivial
>
> i was looking over the 
> [dataset|https://spark.apache.org/docs/2.1.1/api/java/org/apache/spark/sql/Dataset.html]
>  and noticed the code on top that does not make sense in java.
> {code}
>  // To create Dataset<Row> using SparkSession
>    Dataset<Row> people = spark.read().parquet("...");
>    Dataset<Row> department = spark.read().parquet("...");
>    people.filter("age".gt(30))
>      .join(department, people.col("deptId").equalTo(department("id")))
>      .groupBy(department.col("name"), "gender")
>      .agg(avg(people.col("salary")), max(people.col("age")));
> {code}
> invalid parts:
> * "age".gt(30)
> * department("id")



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to