mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
5f4585626d
No need to mask the error code returned by getting the next row to end of file when doing filesort. mysql-test/r/innodb_mysql_rbk.result: Bug #41543: test case mysql-test/t/innodb_mysql_rbk-master.opt: Bug #41543: test case mysql-test/t/innodb_mysql_rbk.test: Bug #41543: test case sql/filesort.cc: Bug #41543: No need to mask the error code returned by getting the next row to end of file when doing filesort.
21 lines
629 B
Text
21 lines
629 B
Text
CREATE TABLE t1(a INT, b INT NOT NULL, PRIMARY KEY (a)) ENGINE=innodb
|
|
DEFAULT CHARSET=latin1;
|
|
INSERT INTO t1 VALUES (1,1),(2,2),(3,3),(4,4),(5,5),(6,6),(7,7);
|
|
START TRANSACTION;
|
|
SELECT * FROM t1 WHERE b=3 LIMIT 1 FOR UPDATE;
|
|
a b
|
|
3 3
|
|
START TRANSACTION;
|
|
UPDATE t1 SET b=b+12 WHERE a > 2 ORDER BY a;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
ROLLBACK;
|
|
START TRANSACTION;
|
|
SELECT * FROM t1 WHERE b=3 LIMIT 1 FOR UPDATE;
|
|
a b
|
|
3 3
|
|
START TRANSACTION;
|
|
UPDATE t1 SET b=10 WHERE a > 1 ORDER BY a;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
SELECT * FROM t1 WHERE b = 10;
|
|
a b
|
|
DROP TABLE t1;
|