Re: [PR] [FLINK-35962][table] Add REGEXP_INSTR function [flink]

2024-08-15 Thread via GitHub
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

Re: [PR] [FLINK-35962][table] Add REGEXP_INSTR function [flink]

2024-08-14 Thread via GitHub
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

Re: [PR] [FLINK-35962][table] Add REGEXP_INSTR function [flink]

2024-08-01 Thread via GitHub
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`

[PR] [FLINK-35962][table] Add REGEXP_INSTR function [flink]

2024-08-01 Thread via GitHub
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 >