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
jsonpath: validate regular expression during parsing
Previously, regular expressions in jsonpath queries were only validated
during query execution. This could lead to queries with invalid regex
patterns being accepted during parsing, only to fail later during
execution.
This change moves regex validation to parse time, ensuring that any
jsonpath query containing an invalid regular expression will fail
immediately during parsing. This matches what postgres does when they
handle regex.
Release note: None
0 commit comments