Infinidat / infi.clickhouse_orm

A Python library for working with the ClickHouse database (https://clickhouse.yandex/)
BSD 3-Clause "New" or "Revised" License
412 stars 136 forks source link

Fixed issue with double negation of Q objects #194

Open M1ha-Shvn opened 2 years ago

M1ha-Shvn commented 2 years ago

Fixed a bug with double Q object negation: ~(~Q(condition=True)) was equal to ~Q(condition=True) before this fix