Commit 3f8abb6e authored by heikki@hundin.mysql.fi's avatar heikki@hundin.mysql.fi
Browse files

innodb.result:

  We changed MySQL default isolation yesterday to REPEATABLE READ
parent 4c1ef311
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -988,7 +988,7 @@ BEGIN;
SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE;
SELECT @@tx_isolation,@@global.tx_isolation;
@@tx_isolation	@@global.tx_isolation
SERIALIZABLE	READ-COMMITTED
SERIALIZABLE	REPEATABLE-READ
insert into t1 (code, name) values (1, 'Tim'), (1, 'Monty'), (2, 'David');
select id, code, name from t1 order by id;
id	code	name