Mysql
 sql >> Database >  >> RDS >> Mysql

Impossibile visualizzare le righe inserite da una transazione in esecuzione quando il livello di isolamento è READ_UNCOMMITTED

Con il mio piccolo script di test non vengono visualizzati record prima del commit se accedo da un'altra console. Tuttavia, posso selezionare i record appena inseriti nella stessa sessione. Quindi presumo che prima del commit potresti accedere a righe che sono già nella tabella, ma ora nuove righe o modifiche prima del commit.

<?php

require_once('db.php');

q( 'drop table if exists t' );
q( 'create table t (id integer not null auto_increment primary key, v datetime) engine=innodb' );

q( 'set transaction isolation level read uncommitted' );
q( 'start transaction' );
q( 'insert into t (v) values (now()),(now()),(now())' );

echo q1( 'count(*)', 't', 'true'); // translates to "select count(*) from t where true"; 
// echoes "3" to the console

// wait for input
$handle = fopen ("php://stdin","r");
$line = fgets($handle);

// with a mysql client from a 2nd console at this point no new records show in table t

q( 'commit' );

// after this point all new records show up in table t from a 2nd session.