chucheng92 commented on code in PR #22179:
URL: https://github.com/apache/flink/pull/22179#discussion_r1139993732


##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/functions/SqlLikeUtils.java:
##########
@@ -58,6 +59,22 @@ public static boolean like(String s, String pattern, String 
escape) {
         return Pattern.matches(regex, s);
     }
 
+    /** SQL {@code ILIKE} function. */
+    public static boolean ilike(String s, String patternStr) {
+        final String regex = sqlToRegexLike(patternStr, null);

Review Comment:
   Thanks. It's a good advice. i will fix this.



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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to