panbingkun commented on code in PR #47364: URL: https://github.com/apache/spark/pull/47364#discussion_r1746999249
########## sql/core/src/main/scala/org/apache/spark/sql/catalog/interface.scala: ########## @@ -222,3 +222,42 @@ class Function( } } + +/** + * A collation in Spark, as returned by the `listCollations` method defined in [[Catalog]]. + * + * @param catalog name of the catalog that the collation belongs to. + * @param schema the schema that the collation belongs to. + * @param collationName name of the collation + * @param language language of the collation + * @param country country of the collation + * @param icuVersion icu version of the collation + * @param padAttribute pad attribute of the collation + * @param accentSensitivity accent sensitivity of the collation + * @param caseSensitivity case sensitivity of the collation + * @since 4.0.0 + */ +class CollationMetadata( Review Comment: Removed. -- 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]
