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
Fix regex LHS capture and inline join state leakage
P1: Regex rewrite used \S+ for LHS, truncating expressions with
spaces/parens like (first || ' ' || last) ~ r'x'. Changed to .+?
to capture the full left-hand expression.
P2: Inline join source extraction didn't save/restore _timezone,
_model_tags, _accept_fields, _except_fields. If the inline source
had timezone: or # annotations, they leaked into the parent model.
0 commit comments