Github user dongjoon-hyun commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14004#discussion_r69854198
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala
 ---
    @@ -198,6 +203,66 @@ case class StringSplit(str: Expression, pattern: 
Expression)
       override def prettyName: String = "split"
     }
     
    +/**
    + * Splits a string into arrays of sentences, where each sentence is an 
array of words.
    + * The 'lang' and 'country' arguments are optional, and if omitted, the 
default locale is used.
    + */
    +@ExpressionDescription(
    +  usage = "_FUNC_(str, lang, country) - Splits str into an array of array 
of words.",
    +  extended = "> SELECT _FUNC_('Hi there! Good morning.');\n  
[['Hi','there'], ['Good','morning']]")
    +case class Sentences(
    +    str: Expression,
    +    language: Expression = Literal(""),
    +    country: Expression = Literal(""))
    +  extends Expression with ImplicitCastInputTypes with CodegenFallback {
    +
    +  def this(str: Expression) = this(str, Literal(""), Literal(""))
    +  def this(str: Expression, language: Expression) = this(str, language, 
Literal(""))
    +
    +  override def nullable: Boolean = true
    +  override def dataType: DataType =
    +    ArrayType(ArrayType(StringType, containsNull = false), containsNull = 
false)
    +  override def inputTypes: Seq[AbstractDataType] = Seq(StringType, 
StringType, StringType)
    +  override def children: Seq[Expression] = str :: language :: country :: 
Nil
    +
    +  override def eval(input: InternalRow): Any = {
    +    val string = str.eval(input)
    +    if (string == null) {
    +      null
    +    } else {
    +      val locale = try {
    +        new Locale(language.eval(input).asInstanceOf[UTF8String].toString,
    +          country.eval(input).asInstanceOf[UTF8String].toString)
    +      } catch {
    +        case _: NullPointerException | _: ClassCastException => 
Locale.getDefault
    --- End diff --
    
    It created the wrong locale, then it compared the system available locales. 
So, finally, ignored. The following is the underlying code in `rt.jar`.
    ```
                List var4 = 
Control.getControl(Control.FORMAT_DEFAULT).getCandidateLocales("", var1);
                Iterator var5 = var4.iterator();
    
                while(var5.hasNext()) {
                    Locale var6 = (Locale)var5.next();
                    if(!var6.equals(var1)) {
                        var2 = findAdapter(var0, var6);
                        if(var2 != null) {
                            ((ConcurrentMap)var3).putIfAbsent(var1, var2);
                            return var2;
                        }
                    }
                }
    ```


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to