uros-db commented on code in PR #48121:
URL: https://github.com/apache/spark/pull/48121#discussion_r1765715084


##########
sql/api/src/main/scala/org/apache/spark/sql/types/StringType.scala:
##########
@@ -44,6 +44,9 @@ class StringType private (val collationId: Int) extends 
AtomicType with Serializ
   private[sql] def supportsLowercaseEquality: Boolean =
     CollationFactory.fetchCollation(collationId).supportsLowercaseEquality
 
+  private[sql] def isNonCSAICollation: Boolean =
+    CollationFactory.isNonCSAI(collationId)

Review Comment:
   ```suggestion
       !CollationFactory.isCaseSensitiveAccentInsensitive(collationId)
   ```
   (with respect to the changes suggested above)



-- 
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]

Reply via email to