Repository: spark Updated Branches: refs/heads/branch-1.5 5200a6e29 -> 36fddb07a
[SPARK-11299][DOC] Fix link to Scala DataFrame Functions reference The SQL programming guide's link to the DataFrame functions reference points to the wrong location; this patch fixes that. Author: Josh Rosen <[email protected]> Closes #9269 from JoshRosen/SPARK-11299. (cherry picked from commit b67dc6a4342577e73b0600b51052c286c4569960) Signed-off-by: Reynold Xin <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/36fddb07 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/36fddb07 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/36fddb07 Branch: refs/heads/branch-1.5 Commit: 36fddb07acc0e077931cf9e063d4d461941eac65 Parents: 5200a6e Author: Josh Rosen <[email protected]> Authored: Sun Oct 25 10:31:44 2015 +0100 Committer: Reynold Xin <[email protected]> Committed: Sun Oct 25 10:31:54 2015 +0100 ---------------------------------------------------------------------- docs/sql-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/36fddb07/docs/sql-programming-guide.md ---------------------------------------------------------------------- diff --git a/docs/sql-programming-guide.md b/docs/sql-programming-guide.md index 82d4243..9b341fb 100644 --- a/docs/sql-programming-guide.md +++ b/docs/sql-programming-guide.md @@ -215,7 +215,7 @@ df.groupBy("age").count().show() For a complete list of the types of operations that can be performed on a DataFrame refer to the [API Documentation](api/scala/index.html#org.apache.spark.sql.DataFrame). -In addition to simple column references and expressions, DataFrames also have a rich library of functions including string manipulation, date arithmetic, common math operations and more. The complete list is available in the [DataFrame Function Reference](api/scala/index.html#org.apache.spark.sql.DataFrame). +In addition to simple column references and expressions, DataFrames also have a rich library of functions including string manipulation, date arithmetic, common math operations and more. The complete list is available in the [DataFrame Function Reference](api/scala/index.html#org.apache.spark.sql.functions$). </div> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
