Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/19017#discussion_r134923403
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/jsonExpressions.scala
---
@@ -447,7 +448,18 @@ case class JsonTuple(children: Seq[Expression])
generator => copyCurrentStructure(generator, parser)
}
- row(idx) = UTF8String.fromBytes(output.toByteArray)
+ val jsonValue = UTF8String.fromBytes(output.toByteArray)
+ row(idx) = jsonValue
+ idx = idx + 1
+
+ // SPARK-21804: json_tuple returns null values within repeated
columns
+ // except the first one; so that we need to check the
remaining fields.
+ while (idx < fieldNames.length) {
+ if (fieldNames(idx) == jsonField) {
+ row(idx) = jsonValue
+ }
+ idx = idx + 1
+ }
--- End diff --
We have followed @HyukjinKwon's suggestion to avoid functional
transformation with a while, since this is a hot path.
---
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.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]