[Sqlalchemy-tickets] [sqlalchemy] #2815: any way to detect this cycle?
Brought to you by:
zzzeek
|
From: sqlalchemy <mi...@zz...> - 2013-08-29 03:27:21
|
#2815: any way to detect this cycle?
--------------------+---------------------------------------
Reporter: zzzeek | Owner: zzzeek
Type: defect | Status: new
Priority: high | Milestone: 0.8.xx
Component: sql | Severity: minor - half an hour
Keywords: | Progress State: in queue
--------------------+---------------------------------------
also why does it happen with append_whereclause, but not where?
{{{
#!python
from sqlalchemy import *
from sqlalchemy.sql import table, column
t = table('t', column('x'))
s = select([t])
s = s.append_whereclause(s.c.x > 5)
print s
}}}
--
Ticket URL: <http://www.sqlalchemy.org/trac/ticket/2815>
sqlalchemy <http://www.sqlalchemy.org/>
The Database Toolkit for Python
|