powa-team / powa-web

PoWA user interface
http://powa.readthedocs.io/
73 stars 31 forks source link

Fix generated where clause on c.calls. #103

Closed anayrat closed 4 years ago

anayrat commented 4 years ago

The goal was to remove zero values. However "c.calls is not None" was translated to "WHERE true" and "c.calls != None" to "WHERE c.calls IS NOT NULL".

Fix #102

rjuju commented 4 years ago

Thanks!