Github user cloud-fan commented on a diff in the pull request:
https://github.com/apache/spark/pull/16541#discussion_r106313960
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/objects/objects.scala
---
@@ -589,6 +590,170 @@ case class MapObjects private(
}
}
+object CollectObjects {
+ private val curId = new java.util.concurrent.atomic.AtomicInteger()
+
+ /**
+ * Construct an instance of CollectObjects case class.
+ *
+ * @param function The function applied on the collection elements.
+ * @param inputData An expression that when evaluated returns a
collection object.
+ * @param elementType The data type of elements in the collection.
+ * @param collClass The type of the resulting collection.
+ */
+ def apply(
+ function: Expression => Expression,
+ inputData: Expression,
+ elementType: DataType,
+ collClass: Class[_]): CollectObjects = {
+ val loopValue = "CollectObjects_loopValue" + curId.getAndIncrement()
+ val loopIsNull = "CollectObjects_loopIsNull" + curId.getAndIncrement()
+ val loopVar = LambdaVariable(loopValue, loopIsNull, elementType)
+ val builderValue = "CollectObjects_builderValue" +
curId.getAndIncrement()
+ CollectObjects(loopValue, loopIsNull, elementType, function(loopVar),
inputData,
+ collClass, builderValue)
+ }
+}
+
+/**
+ * An equivalent to the [[MapObjects]] case class but returning an
ObjectType containing
+ * a Scala collection constructed using the associated builder, obtained
by calling `newBuilder`
+ * on the collection's companion object.
+ *
+ * @param loopValue the name of the loop variable that used when iterate
the collection, and used
+ * as input for the `lambdaFunction`
+ * @param loopIsNull the nullity of the loop variable that used when
iterate the collection, and
+ * used as input for the `lambdaFunction`
+ * @param loopVarDataType the data type of the loop variable that used
when iterate the collection,
+ * and used as input for the `lambdaFunction`
+ * @param lambdaFunction A function that take the `loopVar` as input, and
used as lambda function
+ * to handle collection elements.
+ * @param inputData An expression that when evaluated returns a collection
object.
+ * @param collClass The type of the resulting collection.
+ * @param builderValue The name of the builder variable used to construct
the resulting collection.
+ */
+case class CollectObjects private(
--- End diff --
This seems too heavy, can we improve `MapObjects` to add the builder
concept?
---
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]