clickhouse-sqlalchemy
clickhouse-sqlalchemy copied to clipboard
prewhere support?
Hello,
any plans for supporting Clickhouse prewhere clause?
Hi.
It's not so hard to implement it. See FINAL modifier support for example.
PRs are always welcome.
I'd suggest following naming:
Core:
- .where() - WHERE
- .prewhere() - PREWHERE
ORM:
- .filter()/filter_by() - WHERE
- .prefilter()/prefilter_by() - PREWHERE
Any updates?