Repository: spark Updated Branches: refs/heads/master de9c85cca -> 40ba87f76
[SPARK-15278] [SQL] Remove experimental tag from Python DataFrame ## What changes were proposed in this pull request? Earlier we removed experimental tag for Scala/Java DataFrames, but haven't done so for Python. This patch removes the experimental flag for Python and declares them stable. ## How was this patch tested? N/A. Author: Reynold Xin <[email protected]> Closes #13062 from rxin/SPARK-15278. Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/40ba87f7 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/40ba87f7 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/40ba87f7 Branch: refs/heads/master Commit: 40ba87f769ab03721d01c7960b89a8c414fcfbca Parents: de9c85c Author: Reynold Xin <[email protected]> Authored: Wed May 11 15:12:27 2016 -0700 Committer: Davies Liu <[email protected]> Committed: Wed May 11 15:12:27 2016 -0700 ---------------------------------------------------------------------- python/pyspark/sql/column.py | 2 -- python/pyspark/sql/dataframe.py | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/40ba87f7/python/pyspark/sql/column.py ---------------------------------------------------------------------- diff --git a/python/pyspark/sql/column.py b/python/pyspark/sql/column.py index 90fb76f..5b26e94 100644 --- a/python/pyspark/sql/column.py +++ b/python/pyspark/sql/column.py @@ -139,8 +139,6 @@ class Column(object): df.colName + 1 1 / df.colName - .. note:: Experimental - .. versionadded:: 1.3 """ http://git-wip-us.apache.org/repos/asf/spark/blob/40ba87f7/python/pyspark/sql/dataframe.py ---------------------------------------------------------------------- diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py index 5378c32..49b4818 100644 --- a/python/pyspark/sql/dataframe.py +++ b/python/pyspark/sql/dataframe.py @@ -63,8 +63,6 @@ class DataFrame(object): people.filter(people.age > 30).join(department, people.deptId == department.id)\ .groupBy(department.name, "gender").agg({"salary": "avg", "age": "max"}) - .. note:: Experimental - .. versionadded:: 1.3 """ @@ -206,6 +204,8 @@ class DataFrame(object): :class:`DataFrameWriter`. Methods that return a single answer, (e.g., :func:`count` or :func:`collect`) will throw an :class:`AnalysisException` when there is a streaming source present. + + .. note:: Experimental """ return self._jdf.isStreaming() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
