MaxGekk commented on a change in pull request #27497: 
[SPARK-30245][SQL][FOLLOWUP] Improve regex expression when pattern not changed
URL: https://github.com/apache/spark/pull/27497#discussion_r376725315
 
 

 ##########
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/regexpExpressions.scala
 ##########
 @@ -54,9 +54,20 @@ trait StringRegexExpression extends Expression
     Pattern.compile(escape(str))
   }
 
+  var lastPatternStr: String = null
+  var compiledPattern: Pattern = null
+
   def nullSafeMatch(input1: Any, input2: Any): Any = {
-    val s = input2.asInstanceOf[UTF8String].toString
-    val regex = if (cache == null) compile(s) else cache
+    val patternStr = input2.asInstanceOf[UTF8String].toString
+    val regex = if (cache == null) {
+      if (!(patternStr).equals(lastPatternStr)) {
 
 Review comment:
   Are there any reasons to not use `patternStr != lastPatternStr`?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to