PabloRMira / sql_formatter

A Python based SQL formatter
https://pablormira.github.io/sql_formatter/
Apache License 2.0
43 stars 10 forks source link

Query wrongly separated if comment after semicolon #99

Closed PabloRMira closed 3 years ago

PabloRMira commented 3 years ago

something like

select asdf
from table; /* some comment */

would be wrongly separated from the next query like

select asdf
from table; 

/* some comment */