I have a MySQL 5.7 installed on my system which is set with default transaction isolation level "REPEATABLE-READ". My scenario requires "READ-COMMITTED". So I changed the isolation level in the configuration file so that I can have "READ-COMMITTED" as default.
Yes, on adding it to configuration file, I can see isolation level was changed at global level but it remains "REPEATABLE-READ" at session level. I think anything that got changed in the file should be set across global and session levels as soon as I restarted the server. But this isn't changing.
Please help me regarding this.