need full support of math/boolean operators

Issue #17 resolved
Mike Bayer repo owner created an issue

Python lets you override pretty much every operator: +, -, *, &, |, etc etc. put support in the SQL package so ClauseElements can use these operators. & = and_, | = or_, ~ = not, etc. also insure that you can make expressions out of columns and literals, i.e. select(+ 10, foo.c.lala + foo.c.hoho)

Comments (1)

  1. Log in to comment