Skip to content
Closed
Show file tree
Hide file tree
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 @@ -618,19 +618,24 @@ case class FormatString(children: Expression*) extends Expression with ImplicitC
}

/**
* Returns string, with the first letter of each word in uppercase.
* Returns string, with the first letter of each word in uppercase, all other letters in lowercase.
* 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.",
extended = "> SELECT initcap('sPark sql');\n 'Spark Sql'")
case class InitCap(child: Expression) extends UnaryExpression with ImplicitCastInputTypes {

override def inputTypes: Seq[DataType] = Seq(StringType)
override def dataType: DataType = StringType

override def nullSafeEval(string: Any): Any = {
string.asInstanceOf[UTF8String].toTitleCase
string.asInstanceOf[UTF8String].toLowerCase.toTitleCase
}
override def genCode(ctx: CodegenContext, ev: ExprCode): String = {
defineCodeGen(ctx, ev, str => s"$str.toTitleCase()")
defineCodeGen(ctx, ev, str => s"$str.toLowerCase().toTitleCase()")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ class StringExpressionsSuite extends SparkFunSuite with ExpressionEvalHelper {
checkEvaluation(InitCap(Literal("a b")), "A B")
checkEvaluation(InitCap(Literal(" a")), " A")
checkEvaluation(InitCap(Literal("the test")), "The Test")
checkEvaluation(InitCap(Literal("sParK")), "Spark")
// scalastyle:off
// non ascii characters are not allowed in the code, so we disable the scalastyle here.
checkEvaluation(InitCap(Literal("世界")), "世界")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,12 +272,12 @@ class StringFunctionsSuite extends QueryTest with SharedSQLContext {
}

test("initcap function") {
val df = Seq(("ab", "a B")).toDF("l", "r")
val df = Seq(("ab", "a B", "sParK")).toDF("x", "y", "z")
checkAnswer(
df.select(initcap($"l"), initcap($"r")), Row("Ab", "A B"))
df.select(initcap($"x"), initcap($"y"), initcap($"z")), Row("Ab", "A B", "Spark"))

checkAnswer(
df.selectExpr("InitCap(l)", "InitCap(r)"), Row("Ab", "A B"))
df.selectExpr("InitCap(x)", "InitCap(y)", "InitCap(z)"), Row("Ab", "A B", "Spark"))
}

test("number format function") {
Expand Down