mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
merge
This commit is contained in:
@@ -213,5 +213,10 @@ START TRANSACTION;
|
|||||||
INSERT INTO t1 VALUES (NULL, 'first row t2');
|
INSERT INTO t1 VALUES (NULL, 'first row t2');
|
||||||
SET autocommit=OFF;
|
SET autocommit=OFF;
|
||||||
ALTER TABLE t1 AUTO_INCREMENT = 10;
|
ALTER TABLE t1 AUTO_INCREMENT = 10;
|
||||||
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
||||||
INSERT INTO t1 VALUES (NULL, 'second row t2');
|
INSERT INTO t1 VALUES (NULL, 'second row t2');
|
||||||
|
SELECT a,b FROM t1 ORDER BY a;
|
||||||
|
a b
|
||||||
|
1 first row t2
|
||||||
|
2 second row t2
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
|
@@ -68,10 +68,12 @@ INSERT INTO t1 VALUES (NULL, 'first row t2');
|
|||||||
|
|
||||||
--connection con2
|
--connection con2
|
||||||
SET autocommit=OFF;
|
SET autocommit=OFF;
|
||||||
|
--error ER_LOCK_WAIT_TIMEOUT
|
||||||
ALTER TABLE t1 AUTO_INCREMENT = 10;
|
ALTER TABLE t1 AUTO_INCREMENT = 10;
|
||||||
|
|
||||||
--connection con1
|
--connection con1
|
||||||
INSERT INTO t1 VALUES (NULL, 'second row t2');
|
INSERT INTO t1 VALUES (NULL, 'second row t2');
|
||||||
|
SELECT a,b FROM t1 ORDER BY a;
|
||||||
--disconnect con2
|
--disconnect con2
|
||||||
--disconnect con1
|
--disconnect con1
|
||||||
--connection default
|
--connection default
|
||||||
|
@@ -3431,7 +3431,7 @@ int ha_partition::rnd_next(uchar *buf)
|
|||||||
|
|
||||||
while (TRUE)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
int result= file->rnd_next(buf);
|
result= file->rnd_next(buf);
|
||||||
if (!result)
|
if (!result)
|
||||||
{
|
{
|
||||||
m_last_part= part_id;
|
m_last_part= part_id;
|
||||||
|
Reference in New Issue
Block a user