saurabhd336 opened a new pull request, #12683: URL: https://github.com/apache/pinot/pull/12683
This PR depends on https://github.com/apache/pinot/pull/12532 Allows contextual filtering of documents when using `jsonExtractIndex`. Eg ``` columnName: jsonField value: { "stringField": "xyz", "arrField": [{"f1": 1, "f2": 2}, {"f1": 3, "f2": 4}, {"f2": 6}] } ``` `jsonExtractIndex(jsonField, '$.arrField[*].f1', 'INT_ARRAY', '0', '"$.arrField[*].f2" > 2')` returns `[3]` i.e. Only return matching array elements that match the given json predicate. -- 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...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org