Comment 1 for bug 430596

Revision history for this message
Paul McCullagh (paul-mccullagh) wrote :

This bug can be repeated as follows:

DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (c1 int primary key auto_increment, c2 varchar(200)) auto_increment = 1000 ENGINE=pbxt;
insert t1 (c2) values ("abc"), ("def"), ("ghi");

backup database test to 'test.bak';

drop database test;

restore from 'test.bak';

insert t1 (c2) values ("XYZ");