tanclary opened a new pull request, #3114:
URL: https://github.com/apache/calcite/pull/3114

   BigQuery supports the `STRPOS()` function with accepts 2 `STRINGS` as 
arguments. The function returns the 1-based position of the first occurrence of 
the second string within the first (example below). If no occurrence is found, 
the function returns 0. The function also supports ByteStrings with the same 
behavior.
   
   EXAMPLE: `STRPOS("abc", "bc")` would return: `2`.
   EXAMPLE: `STRPOS("abc", "d")` would return: `0`.
   
   [BigQuery 
docs](https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions#strpos)
   [JIRA Case](https://issues.apache.org/jira/browse/CALCITE-5585)


-- 
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: commits-unsubscr...@calcite.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to