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
Add SKIP and SKIP REGEXP support for JSON type parameters
This adds proper parsing and formatting for SKIP clauses in JSON type
parameters, including:
- SKIP path (e.g., SKIP a.b for dotted paths)
- SKIP REGEXP 'pattern' (for regex-based path matching)
These are used in JSON type casts like:
json::JSON(SKIP a.b, max_dynamic_paths=2)
json::JSON(SKIP REGEXP '.*a.*', max_dynamic_paths=2)
0 commit comments