Github user rxin commented on a diff in the pull request:
https://github.com/apache/spark/pull/447#discussion_r11789343
--- Diff: python/pyspark/sql.py ---
@@ -305,6 +305,19 @@ def registerAsTable(self, name):
"""
self._jschema_rdd.registerAsTable(name)
+ def insertInto(self, tableName, overwrite = False):
+ """
+ Inserts the contents of this SchemaRDD into the specified table,
optionally overwriting any
--- End diff --
Make it 72 chars wide max for docstring:
Note that this does not apply for docstrings: docstrings should be at most
72 characters wide to display properly in most Python consoles.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---