[Sqlalchemy-tickets] Issue #3528: Hybrid Property Does Interval Intersect Wrong (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
|
From: Jason M. <iss...@bi...> - 2015-09-10 12:23:54
|
New issue 3528: Hybrid Property Does Interval Intersect Wrong https://bitbucket.org/zzzeek/sqlalchemy/issues/3528/hybrid-property-does-interval-intersect Jason Myers: I don't know if we even care to fix this or maybe just rename it from intersect to contains range; however, the docs at https://bitbucket.org/zzzeek/sqlalchemy/src/be548690c7053a25a546d47cc4ae6e3595c6f421/lib/sqlalchemy/ext/hybrid.py?at=master&fileviewer=file-view-default#hybrid.py-52 would fail for an example of ``` #!python Interval(3, 5).intersects(Interval(2, 5)) ``` Although those intervals do intersect. |