Skip to content
Snippets Groups Projects
Commit d60a9d44 authored by Davies Liu's avatar Davies Liu Committed by Josh Rosen
Browse files

[SPARK-4051] [SQL] [PySpark] Convert Row into dictionary

Added a method to Row to turn row into dict:

```
>>> row = Row(a=1)
>>> row.asDict()
{'a': 1}
```

Author: Davies Liu <davies@databricks.com>

Closes #2896 from davies/dict and squashes the following commits:

8d97366 [Davies Liu] convert Row into dict
parent d2987e8f
No related branches found
No related tags found
No related merge requests found
......@@ -883,6 +883,10 @@ def _create_cls(dataType):
# create property for fast access
locals().update(_create_properties(dataType.fields))
def asDict(self):
""" Return as a dict """
return dict(zip(self.__FIELDS__, self))
def __repr__(self):
# call collect __repr__ for nested objects
return ("Row(%s)" % ", ".join("%s=%r" % (n, getattr(self, n))
......@@ -1466,6 +1470,14 @@ class Row(tuple):
else:
raise ValueError("No args or kwargs")
def asDict(self):
"""
Return as an dict
"""
if not hasattr(self, "__FIELDS__"):
raise TypeError("Cannot convert a Row class into dict")
return dict(zip(self.__FIELDS__, self))
# let obect acs like class
def __call__(self, *args):
"""create new Row object"""
......
......@@ -771,6 +771,15 @@ class SQLTests(ReusedPySparkTestCase):
self.assertEqual(1.0, row.c)
self.assertEqual("2", row.d)
def test_convert_row_to_dict(self):
row = Row(l=[Row(a=1, b='s')], d={"key": Row(c=1.0, d="2")})
self.assertEqual(1, row.asDict()['l'][0].a)
rdd = self.sc.parallelize([row])
srdd = self.sqlCtx.inferSchema(rdd)
srdd.registerTempTable("test")
row = self.sqlCtx.sql("select l[0].a AS la from test").first()
self.assertEqual(1, row.asDict()["la"])
class InputFormatTests(ReusedPySparkTestCase):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment