Repository: spark
Updated Branches:
  refs/heads/branch-1.6 9bf77d5c3 -> 68c1d9fa6


[HOTFIX] Fix python tests after #9527

#9527 missed updating the python tests.

Author: Michael Armbrust <mich...@databricks.com>

Closes #9533 from marmbrus/hotfixTextValue.

(cherry picked from commit 105732dcc6b651b9779f4a5773a759c5b4fbd21d)
Signed-off-by: Reynold Xin <r...@databricks.com>


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

Branch: refs/heads/branch-1.6
Commit: 68c1d9fa6e90636a6b6d2a7b4d2a7e35c936e852
Parents: 9bf77d5
Author: Michael Armbrust <mich...@databricks.com>
Authored: Fri Nov 6 17:22:30 2015 -0800
Committer: Reynold Xin <r...@databricks.com>
Committed: Fri Nov 6 17:22:39 2015 -0800

----------------------------------------------------------------------
 python/pyspark/sql/readwriter.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/68c1d9fa/python/pyspark/sql/readwriter.py
----------------------------------------------------------------------
diff --git a/python/pyspark/sql/readwriter.py b/python/pyspark/sql/readwriter.py
index 97bd90c..927f407 100644
--- a/python/pyspark/sql/readwriter.py
+++ b/python/pyspark/sql/readwriter.py
@@ -203,7 +203,7 @@ class DataFrameReader(object):
 
         >>> df = sqlContext.read.text('python/test_support/sql/text-test.txt')
         >>> df.collect()
-        [Row(text=u'hello'), Row(text=u'this')]
+        [Row(value=u'hello'), Row(value=u'this')]
         """
         return self._df(self._jreader.text(path))
 


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

Reply via email to