Repository: spark
Updated Branches:
  refs/heads/master 4633a87b8 -> dc9c9196d


[SPARK-6366][SQL] In Python API, the default save mode for save and saveAsTable 
should be "error" instead of "append".

https://issues.apache.org/jira/browse/SPARK-6366

Author: Yin Huai <yh...@databricks.com>

Closes #5053 from yhuai/SPARK-6366 and squashes the following commits:

fc81897 [Yin Huai] Use error as the default save mode for save/saveAsTable.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/dc9c9196
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/dc9c9196
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/dc9c9196

Branch: refs/heads/master
Commit: dc9c9196d63aa465e86ac52f0e86e10c12472100
Parents: 4633a87
Author: Yin Huai <yh...@databricks.com>
Authored: Wed Mar 18 09:41:06 2015 +0800
Committer: Cheng Lian <l...@databricks.com>
Committed: Wed Mar 18 09:41:06 2015 +0800

----------------------------------------------------------------------
 python/pyspark/sql/dataframe.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/dc9c9196/python/pyspark/sql/dataframe.py
----------------------------------------------------------------------
diff --git a/python/pyspark/sql/dataframe.py b/python/pyspark/sql/dataframe.py
index 94001ae..5cb89da 100644
--- a/python/pyspark/sql/dataframe.py
+++ b/python/pyspark/sql/dataframe.py
@@ -162,7 +162,7 @@ class DataFrame(object):
                 "Only 'append', 'overwrite', 'ignore', and 'error' are 
acceptable save mode.")
         return jmode
 
-    def saveAsTable(self, tableName, source=None, mode="append", **options):
+    def saveAsTable(self, tableName, source=None, mode="error", **options):
         """Saves the contents of the :class:`DataFrame` to a data source as a 
table.
 
         The data source is specified by the `source` and a set of `options`.
@@ -188,7 +188,7 @@ class DataFrame(object):
                                           
self.sql_ctx._sc._gateway._gateway_client)
         self._jdf.saveAsTable(tableName, source, jmode, joptions)
 
-    def save(self, path=None, source=None, mode="append", **options):
+    def save(self, path=None, source=None, mode="error", **options):
         """Saves the contents of the :class:`DataFrame` to a data source.
 
         The data source is specified by the `source` and a set of `options`.


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

Reply via email to