Kimahriman commented on code in PR #37770:
URL: https://github.com/apache/spark/pull/37770#discussion_r962934005
##########
python/pyspark/sql/functions.py:
##########
@@ -5956,6 +5978,33 @@ def posexplode_outer(col: "ColumnOrName") -> Column:
return _invoke_function_over_columns("posexplode_outer", col)
+def inline_outer(col: "ColumnOrName") -> Column:
+ """
+ Explodes an array of structs into a table.
+ Unlike inline, if the array is null or empty then null is produced for
each nested column.
+
+ .. versionadded:: 3.4.0
+
Review Comment:
Added parameters/returns
##########
python/pyspark/sql/functions.py:
##########
@@ -5883,6 +5883,28 @@ def posexplode(col: "ColumnOrName") -> Column:
return _invoke_function_over_columns("posexplode", col)
+def inline(col: "ColumnOrName") -> Column:
Review Comment:
Added to that file
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]