For an ActiveRecord query, I can see the SQL generated without actually executing it:
SomeModel.where(something: "something").to_sql
No query was sent to the DB, but I can see the SQL as a string.
Is there anything similar that can be done for the update SQL that will be generated by some_model.save?
I think maybe not, I can't find it!