Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, wait.

Do we need to revise the doc?

"Trim collation feature is under development and its use should be done under this" +
"feature flag. Trim collation trims trailing whitespaces from strings."

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The development is finished, isn't it?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated the message. cc @dongjoon-hyun


val DEFAULT_COLLATION =
buildConf(SqlApiConfHelper.DEFAULT_COLLATION)
Expand Down