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 final test expectations for parentheses normalization
PostgreSQL's parser normalizes expressions in the AST by removing
unnecessary parentheses. Updated test expectations to match:
- Arithmetic expressions: (1 + 2) → 1 + 2
- Subtraction expressions: (a - b) → a - b
- CASE WHEN conditions: (a > 0) → a > 0
- Parenthesized negative floats: (-1.5) → -1.5
- Negative bigints: -9223372036854775808 → - 9223372036854775808
All test expectations now match actual AST-driven deparser output.
Co-Authored-By: Dan Lynch <[email protected]>
0 commit comments