Failed to read auto-increment value from storage engine
Bug #512436 reported by
Barry Leslie
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
PBXT |
In Progress
|
Undecided
|
Vladimir Kolesnikov |
Bug Description
This bug may be related to 430600 but since 430600 was fixed and this bug remains in 1.0.10c I am assuming it is not the same.
It is very simple to reproduce:
CREATE TABLE `test4` (
`c1` int(11) NOT NULL AUTO_INCREMENT,
`c2` varchar(32) DEFAULT NULL,
PRIMARY KEY (`c1`)
) ENGINE=PBXT DEFAULT CHARSET=utf8
insert into test4(c2) values("xxxx");
MySQL version: 5.1.42
OS: OS X 10.5.8
Changed in pbxt: | |
assignee: | nobody → Paul McCullagh (paul-mccullagh) |
status: | New → In Progress |
Changed in pbxt: | |
assignee: | Paul McCullagh (paul-mccullagh) → Vladimir Kolesnikov (vkolesnikov) |
status: | In Progress → Confirmed |
Changed in pbxt: | |
status: | Confirmed → In Progress |
To post a comment you must log in.
Hi Barry,
It is not obvious what the problem is. What do you get when you enter:
select LAST_INSERT_ID();
after the INSERT?