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 @@ -622,9 +622,9 @@ case class FormatString(children: Expression*) extends Expression with ImplicitC
* Words are delimited by whitespace.
*/
@ExpressionDescription(
usage = "_FUNC_(str) - " +
"Returns str, with the first letter of each word in uppercase, all other letters in " +
"lowercase. Words are delimited by white space.",
usage =
"""_FUNC_(str) - Returns str with the first letter of each word in uppercase.
All other letters are in lowercase. Words are delimited by white space.""",
extended = "> SELECT initcap('sPark sql');\n 'Spark Sql'")
case class InitCap(child: Expression) extends UnaryExpression with ImplicitCastInputTypes {

Expand Down