mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Applying InnoDB snapshot 5.1-ss6242, part 6. Fixes BUG#48482
1. BUG#48482 - innodb-autoinc.test fails with results difference 2. enable the disabled test Detailed revision comments: r6230 | sunny | 2009-11-24 23:52:43 +0200 (Tue, 24 Nov 2009) | 3 lines branches/5.1: Fix autoinc failing test results. (this should be skipped when merging 5.1 into zip)
This commit is contained in:
@ -875,11 +875,11 @@ ALTER TABLE t1 CHANGE c1 d1 INT NOT NULL AUTO_INCREMENT;
|
|||||||
SELECT * FROM t1;
|
SELECT * FROM t1;
|
||||||
d1
|
d1
|
||||||
1
|
1
|
||||||
3
|
2
|
||||||
SELECT * FROM t1;
|
SELECT * FROM t1;
|
||||||
d1
|
d1
|
||||||
1
|
1
|
||||||
3
|
2
|
||||||
INSERT INTO t1 VALUES(null);
|
INSERT INTO t1 VALUES(null);
|
||||||
Got one of the listed errors
|
Got one of the listed errors
|
||||||
ALTER TABLE t1 AUTO_INCREMENT = 3;
|
ALTER TABLE t1 AUTO_INCREMENT = 3;
|
||||||
@ -888,13 +888,13 @@ Table Create Table
|
|||||||
t1 CREATE TABLE `t1` (
|
t1 CREATE TABLE `t1` (
|
||||||
`d1` int(11) NOT NULL AUTO_INCREMENT,
|
`d1` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
PRIMARY KEY (`d1`)
|
PRIMARY KEY (`d1`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1
|
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1
|
||||||
INSERT INTO t1 VALUES(null);
|
INSERT INTO t1 VALUES(null);
|
||||||
SELECT * FROM t1;
|
SELECT * FROM t1;
|
||||||
d1
|
d1
|
||||||
1
|
1
|
||||||
|
2
|
||||||
3
|
3
|
||||||
4
|
|
||||||
DROP TABLE t1;
|
DROP TABLE t1;
|
||||||
SET @@SESSION.AUTO_INCREMENT_INCREMENT=1, @@SESSION.AUTO_INCREMENT_OFFSET=1;
|
SET @@SESSION.AUTO_INCREMENT_INCREMENT=1, @@SESSION.AUTO_INCREMENT_OFFSET=1;
|
||||||
SHOW VARIABLES LIKE "%auto_inc%";
|
SHOW VARIABLES LIKE "%auto_inc%";
|
||||||
|
@ -13,5 +13,4 @@ kill : Bug#37780 2008-12-03 HHunger need some changes to be
|
|||||||
query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically
|
query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically
|
||||||
partition_innodb_builtin : Bug#32430 2009-09-25 mattiasj Waiting for push of Innodb changes
|
partition_innodb_builtin : Bug#32430 2009-09-25 mattiasj Waiting for push of Innodb changes
|
||||||
partition_innodb_plugin : Bug#32430 2009-09-25 mattiasj Waiting for push of Innodb changes
|
partition_innodb_plugin : Bug#32430 2009-09-25 mattiasj Waiting for push of Innodb changes
|
||||||
innodb-autoinc : Bug#48482 2009-11-02 svoj innodb-autoinc.test fails with results difference
|
|
||||||
rpl_killed_ddl : Bug#45520: rpl_killed_ddl fails sporadically in pb2
|
rpl_killed_ddl : Bug#45520: rpl_killed_ddl fails sporadically in pb2
|
||||||
|
Reference in New Issue
Block a user