kayak / pypika

PyPika is a python SQL query builder that exposes the full richness of the SQL language using a syntax that reflects the resulting query. PyPika excels at all sorts of SQL queries but is especially useful for data analysis.
http://pypika.readthedocs.io/en/latest/
Apache License 2.0
2.43k stars 293 forks source link

SnowflakeQuery missing in pypika.dialects #741

Open deragon opened 11 months ago

deragon commented 11 months ago

In pypika/init.py, SnowflakeQuery is missing in the code segment:

from pypika.dialects import (
    ClickHouseQuery,
    Dialects,
    MSSQLQuery,
    MySQLQuery,
    OracleQuery,
    PostgreSQLQuery,
    RedshiftQuery,
    SQLLiteQuery,
    VerticaQuery,
)

It might be on purpose; maybe Snowflake dialect is not ready to be included there yet; I do not know. But I am reporting this in case this is a mistake.

AzisK commented 10 months ago

To my understanding it has to be here. Would you like to work on this change?