[sqlalchemy] Re: ORM query with overlaps operator

2013-05-08 Thread gio
Hi all Searching how to solve the (start,end).op('OVERLAPS')(,start1,end1) Problem with postgres and salqalchemy 0.8 Some hints ? Note: _CompareMixin is not presen in SQLalchem 0.8 Am Freitag, 21. August 2009 09:50:10 UTC+2 schrieb David Bolen: Has anyone generated ORM queries using the

[sqlalchemy] Re: ORM query with overlaps operator

2009-08-21 Thread Ants Aasma
This is something that could be improved in SQLAlchemy, but as a workaround you can use the compiler extension to create the support yourself. Here's some example code. It uses some private internals from SQLAlchemy so you need to keep an eye on it that it doesn't break when changing versions.

[sqlalchemy] Re: ORM query with overlaps operator

2009-08-21 Thread David Bolen
Ants Aasma ants.aa...@gmail.com writes: This is something that could be improved in SQLAlchemy, but as a workaround you can use the compiler extension to create the support yourself. Here's some example code. It uses some private internals from SQLAlchemy so you need to keep an eye on it