After calling update(), I know that the return value has a .rowcount attribute that will reveal how many rows were changed. Is there a way to get the actual new values that they were changed to?
For example, if I do the SQLAlchemy equivalent of:
UPDATE t SET x=x+1 WHERE y=z
...is there a way to get the new value for x? Or do I have to do a SELECT?