diff --git a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala index 727d54b6bbd2e..64f2546f8d345 100644 --- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala +++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala @@ -874,13 +874,12 @@ object SQLConf { lazy val TRIM_COLLATION_ENABLED = buildConf("spark.sql.collation.trim.enabled") .internal() - .doc( - "Trim collation feature is under development and its use should be done under this" + - "feature flag. Trim collation trims trailing whitespaces from strings." + .doc("When enabled allows the use of trim collations which trim trailing whitespaces from" + + " strings." ) .version("4.0.0") .booleanConf - .createWithDefault(Utils.isTesting) + .createWithDefault(true) val DEFAULT_COLLATION = buildConf(SqlApiConfHelper.DEFAULT_COLLATION)