Details
-
Type:
Technical task
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
Description
Test case:
CREATE TABLE t1 (pk int primary key) ENGINE=LevelDB; INSERT INTO t1 VALUES (1),(2); CREATE TABLE t2 LIKE t1; INSERT INTO t2 SELECT * FROM t1; DELETE t2.* FROM t1, t2;
Output:
CREATE TABLE t1 (pk int primary key) ENGINE=LevelDB; INSERT INTO t1 VALUES (1),(2); CREATE TABLE t2 LIKE t1; INSERT INTO t2 SELECT * FROM t1; main.t1 [ fail ] Test ended at 2013-01-15 04:13:16 CURRENT_TEST: main.t1 mysqltest: At line 8: query 'DELETE t2.* FROM t1, t2' failed: 1205: Lock wait timeout exceeded; try restarting transaction
revision-id: psergey@askmonty.org-20130114195003-fgp08gh4swgcf1cx revno: 4486 branch-nick: mysql-5.6-leveldb
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Possibly both this and
MDEV-4044come from the same basic (known) problem as below, and just needs to wait till it's fixedcreate table t1 (i int primary key) engine=leveldb;
insert into t1 values (1),(1);
ERROR HY000: Lock wait timeout exceeded; try restarting transaction