David-Wobrock / sqlvalidator

SQL queries formatting, syntactic and semantic validation

Home Page:https://pypi.org/project/sqlvalidator/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Double quote in schema name breaks the formatting

pcaneill opened this issue · comments

def fun():
    return """SELECT col1, column2 FROM "schema"."table""""

output:

def fun():
    return """
SELECT
 col1,
 column2
FROM "schema" .
""""

Thanks for submitting an issue :) Should be fixed in version 0.0.14

The project is still quite early stage, please submit bugs as soon as you encounter them 🙏