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
143735: jsonpath: validate regular expression during parsing r=normanchenn a=normanchenn
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.
Informs: #143730Closes: #143693
Release note: None.
Co-authored-by: Norman Chen <[email protected]>
0 commit comments