HyukjinKwon commented on code in PR #57450:
URL: https://github.com/apache/spark/pull/57450#discussion_r3732221246
##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/stringExpressions.scala:
##########
@@ -969,6 +969,62 @@ case class TryValidateUTF8(input: Expression) extends
RuntimeReplaceable with Im
}
+/**
+ * A function that returns the Unicode normalization of a string.
+ */
+// scalastyle:off
+@ExpressionDescription(
+ usage = """
+ _FUNC_(str[, form]) - Returns the Unicode normalization of `str` using the
normalization `form`.
+ Valid forms are 'NFC' (default), 'NFD', 'NFKC', and 'NFKD'. The form
name is case-insensitive.
+ """,
+ arguments = """
+ Arguments:
+ * str - a string expression to normalize.
+ * form - a string expression giving the normalization form: 'NFC',
'NFD', 'NFKC', or 'NFKD'.
+ If omitted, 'NFC' is used.
+ """,
+ examples = """
+ Examples:
+ > SELECT _FUNC_('fi', 'NFKC');
+ fi
+ """,
+ since = "4.3.0",
Review Comment:
4.4.0? since branch-4.3 is cut out
--
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]