Hi

task = Task(u'Task',\
                         {'quiet':False}, [], {}, None, u'admin')
model.DBSession.merge(task)

in my database the following query will try to select the above task
object and result in error

DBSession.query(TaskCalendar).options(eagerload('task')).\
                filter((TaskCalendar.dow == 0) |\
                TaskCalendar.dow.op('&')(1 << now[6]) >
0).filter(TaskCalendar.task_id == 19).all()

thanks

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To post to this group, send email to sqlalch...@googlegroups.com.
To unsubscribe from this group, send email to 
sqlalchemy+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en.

Reply via email to