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
Separate JSON operators with spaces so #> deparses correctly (#2487)
JsonExpression.toString glued each operator directly onto its operand, so
a #> ... deparsed as a#>... . Because # is a legal identifier character, that
re-parses as a# > ... -- a GreaterThan, a different tree from the original
JsonExpression. Emit a space on each side of the operator, matching the
JsonOperator visitor.
0 commit comments