mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
eb65479127
Fixes the following bugs: Bug #30706: SQL thread on slave is allowed to block client queries when slave load is high Add (innodb|innobase|srv)_replication_delay MySQL config parameter. Bug #30888: Innodb table + stored procedure + row deletion = server crash While adding code for the low level read of the AUTOINC value from the index, the case for MEDIUM ints which are 3 bytes was missed triggering an assertion. Bug #30907: Regression: "--innodb_autoinc_lock_mode=0" (off) not same as older releases We don't rely on *first_value to be 0 when checking whether get_auto_increment() has been invoked for the first time in a multi-row INSERT. We instead use trx_t::n_autoinc_rows. Initialize trx::n_autoinc_rows inside ha_innobase::start_stmt() too. Bug #31444: "InnoDB: Error: MySQL is freeing a thd" in innodb_mysql.test ha_innobase::external_lock(): Update prebuilt->mysql_has_locked and trx->n_mysql_tables_in_use only after row_lock_table_for_mysql() returns DB_SUCCESS. A timeout on LOCK TABLES would lead to an inconsistent state, which would cause trx_free() to print a warning. Bug #31494: innodb + 5.1 + read committed crash, assertion Set an error code when a deadlock occurs in semi-consistent read.
36 lines
938 B
Text
36 lines
938 B
Text
set session transaction isolation level read committed;
|
|
create table t1(a int not null) engine=innodb DEFAULT CHARSET=latin1;
|
|
insert into t1 values (1),(2),(3),(4),(5),(6),(7);
|
|
set autocommit=0;
|
|
select * from t1 where a=3 lock in share mode;
|
|
a
|
|
3
|
|
set session transaction isolation level read committed;
|
|
set autocommit=0;
|
|
update t1 set a=10 where a=5;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
commit;
|
|
update t1 set a=10 where a=5;
|
|
select * from t1 where a=2 for update;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
select * from t1 where a=2 limit 1 for update;
|
|
a
|
|
2
|
|
update t1 set a=11 where a=6;
|
|
update t1 set a=12 where a=2;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
update t1 set a=13 where a=1;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
commit;
|
|
update t1 set a=14 where a=1;
|
|
commit;
|
|
select * from t1;
|
|
a
|
|
14
|
|
2
|
|
3
|
|
4
|
|
10
|
|
11
|
|
7
|
|
drop table t1;
|