Repository: spark Updated Branches: refs/heads/branch-2.0 0699acc1b -> b1e14d9bf
[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. (cherry picked from commit 40ba87f769ab03721d01c7960b89a8c414fcfbca) Signed-off-by: Davies Liu <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/b1e14d9b Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/b1e14d9b Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/b1e14d9b Branch: refs/heads/branch-2.0 Commit: b1e14d9bfb4df836b827b572e8dd07548a41bc3f Parents: 0699acc 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:39 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/b1e14d9b/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/b1e14d9b/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]
