You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit adds support for regex flags for JSONPath's `like_regex`
predicate. The supported flags are:
- 'i': Case-insensitive matching
- 's': Dot matches newline
- 'm': Multiline mode (^\$ match at newlines)
- 'x': Ignore whitespace mode (Not implemented in Postgres, we return
the same error)
- 'q': No special characters (treat pattern as a literal)
Release note (sql change): Add support for `like_regex` flags in
JSONPath queries. For example, `SELECT jsonb_path_query('{}', '"a"
like_regex ".*" flag "i"');`.
0 commit comments