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
Encountering braces {} or brackets [] in SQL dialect not supporting these will now throw error #400
Encountering unbalanced parenthesis () (also {} and []) will now produce an error #277
Performance
Tokenizer is now faster, thanks to removal of case-insensitive regex transform #394
Parser is now slower, because of the switch to nearley #277
Overall performance is more impacted by the parser, so the net result is a slower formatting. Though this should only affect you if you're formatting megabytes worth of SQL.
Internal changes
Switch from hand-written parser to Nearley parser-generator #277