I'm working on a school project now that needs to characterize the performance of MySQL with regards to different isolation levels. I've tested things on READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ and SERIALIZABLE. Now I'd like to test things using snapshot isolation.
I understand that when using the default for REPEATABLE READ in InnoDB, snapshot isolation is used in conjunction, but I'm wondering, is it's possible to set the isolation level to snapshot isolation only? How would I do that?