I have a problem with MySQL workbench 6.0 CE, I will describe it the most explained possible:
MySQL Workbench always set my session variable @@tx_isolation
to "REPEATABLE READ"
and the only way to change this variable is using SET tx_isolation='READ-COMMITTED';
.
What I want is that when I launch workbench the default session variable for tx_isolation
is 'READ-COMMITTED'
and not 'REPEATABLE-READ'
; yes, I've changed the global variable tx_isolation
and it's 'READ-COMMITTED'
but session one is not.
Ej:
SELECT @@Global.tx_isolation, @@tx_isolation;
returns: 'READ-COMMITTED'
, 'REPEATABLE-READ'
respectively.
Note: If I query the same code as above in MySQL command line, both variables are set to 'READ-COMMITTED'
, that's why I think it's a problem with MySQL Workbench and not the server.
Thanks for the help.