i briefly glanced at your setup, and just want to note that you'll have a better comparison using the `compile` with the mysql engine (docs here: http://docs.sqlalchemy.org/en/latest/faq/sqlexpressions.html)
the query clauses you pass into `str()` aren't compiled for the mysql dialect, so may differ from what is being emitted. this might not change the output of your test case, but it often does -- and may help you realize the answer. (or Mike/Simon may chime in before then) -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
