The following query takes 4 seconds to run from MySQL Workbench:
SELECT * FROM belgarath.match_result;
The following query from python takes 70 seconds:
session.query(MatchResult).all()
Are they the same thing? If yes, then why such a big difference?
Edit:
Should mention that I have Don't Limit
selected in Workbench.