Matches the regular expression on the input string, and returns the index of the first match.
REGEX_MATCH_POSITION(pattern, value, startPosition)
CREATE JOB function_operator_example
ADD_MISSING_COLUMNS = true
AS INSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data
MAP_COLUMNS_BY_NAME
SELECT pattern, value, startPosition,
REGEX_MATCH_POSITION(',', value, startPosition) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET pattern = ',',
value = '1,2,3',
startPosition = 0
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;