mikhailnik-db commented on code in PR #48748:
URL: https://github.com/apache/spark/pull/48748#discussion_r1829119142
##########
sql/api/src/main/scala/org/apache/spark/sql/functions.scala:
##########
@@ -1147,6 +1147,157 @@ object functions {
*/
def sum_distinct(e: Column): Column = Column.fn("sum", isDistinct = true, e)
+ /**
+ * Aggregate function: returns the concatenation of non-null input values.
+ *
+ * @group agg_funcs
+ * @since 4.0.0
+ */
+ def listagg(e: Column): Column = Column.fn("listagg", e)
+
+ /**
+ * Aggregate function: returns the concatenation of non-null input values.
+ *
+ * @group agg_funcs
+ * @since 4.0.0
+ */
+ def listagg(columnName: String): Column = listagg(Column(columnName))
Review Comment:
Removed all functions with string
--
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]