I was going batty trying to figure out why a unit test kept passing, while 
the functionality was clearly broken.

I eventually realized the problem was a `filter` that didn't apply to the 
actual query.

The code was essentially this:

    result = s.query(Foo).filter(Bar.id = 1)

but it was difficult to tell because the classes looked more like 
FooVariantApples and FooVariantAardvarks

Is there a way I can configure SqlAlchemy to raise exceptions to queries if 
the filters apply to a class that is not queried or joined?

-- 
SQLAlchemy - 
The Python SQL Toolkit and Object Relational Mapper

http://www.sqlalchemy.org/

To post example code, please provide an MCVE: Minimal, Complete, and Verifiable 
Example.  See  http://stackoverflow.com/help/mcve for a full description.
--- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at https://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to