sarutak commented on a change in pull request #31096:
URL: https://github.com/apache/spark/pull/31096#discussion_r556123419
##########
File path:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/parser/ParserUtils.scala
##########
@@ -172,6 +172,20 @@ object ParserUtils {
}
sb.append(code.asInstanceOf[Char])
i += 5
+ } else if ((i + 10 < strLength) && b.charAt(i + 1) == 'U' &&
+ (2 until 10).forall(j => Character.digit(b.charAt(i + j),
16) != -1)) {
+ // \U00000000 style 32-bit unicode character literals.
+
+ val codePoint = Integer.parseInt(b.substring(i + 2, i + 10), 16)
Review comment:
I considered to use `Long.parseLong` but is it worth consuming
additional 4-byte for `Long` (though the impact should be small) ?
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]