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_r376724819
 
 

 ##########
 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
 
 Review comment:
   You can keep `lastPattern` as `Pattern`, and compare it to the current 
pattern via `lastPattern.pattern() == patternStr`. No need to keep 
`lastPattern` as a string.

----------------------------------------------------------------
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