mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -18,10 +18,14 @@ INSERT INTO t1 (pk) VALUES (1);
|
||||
ROLLBACK TO SAVEPOINT sp;
|
||||
|
||||
--connection default
|
||||
SET @save_timeout=@@lock_wait_timeout;
|
||||
SET @save_innodb_timeout=@@innodb_lock_wait_timeout;
|
||||
SET lock_wait_timeout=0;
|
||||
SET innodb_lock_wait_timeout=0;
|
||||
--error ER_LOCK_WAIT_TIMEOUT
|
||||
ALTER TABLE t1 PARTITION BY HASH(pk);
|
||||
SET lock_wait_timeout=@save_timeout;
|
||||
SET innodb_lock_wait_timeout=@save_innodb_timeout;
|
||||
|
||||
SHOW CREATE TABLE t1;
|
||||
--connection con1
|
||||
|
Reference in New Issue
Block a user