dylanhz closed pull request #25144: [FLINK-35962][table] Add REGEXP_INSTR
function
URL: https://github.com/apache/flink/pull/25144
--
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 commen
dylanhz commented on code in PR #25144:
URL: https://github.com/apache/flink/pull/25144#discussion_r1716642672
##
flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/functions/scalar/RegexpInstrFunction.java:
##
@@ -0,0 +1,64 @@
+/*
+ * Licensed to the A
flinkbot commented on PR #25144:
URL: https://github.com/apache/flink/pull/25144#issuecomment-2264434239
## CI report:
* 839d86202208ec1ef7f13db12bc8359df627ec5b UNKNOWN
Bot commands
The @flinkbot bot supports the following commands:
- `@flinkbot run azure`
dylanhz opened a new pull request, #25144:
URL: https://github.com/apache/flink/pull/25144
## What is the purpose of the change
Add REGEXP_INSTR function.
Examples:
```SQL
> SELECT REGEXP_INSTR('Steven Jones and Stephen Smith are the best players',
'Ste(v|ph)en');
1
>