mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
rpl_auto_increment_11932.result, rpl_auto_increment_11932.test:
Test case for BUG#11932
This commit is contained in:
46
mysql-test/r/rpl_auto_increment_11932.result
Normal file
46
mysql-test/r/rpl_auto_increment_11932.result
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
stop slave;
|
||||||
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
|
reset master;
|
||||||
|
reset slave;
|
||||||
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||||
|
start slave;
|
||||||
|
drop database if exists t1;
|
||||||
|
create database t1;
|
||||||
|
use t1;
|
||||||
|
CREATE TABLE `t` (
|
||||||
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
`fname` varchar(100) default NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
||||||
|
INSERT INTO `t` VALUES (1, 'blablabla');
|
||||||
|
CREATE TABLE `test3` (
|
||||||
|
`id` int(10) NOT NULL auto_increment,
|
||||||
|
`comment` varchar(255) NOT NULL default '',
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM AUTO_INCREMENT=3 ;
|
||||||
|
INSERT INTO `test3` VALUES (1, 'testtest 1');
|
||||||
|
INSERT INTO `test3` VALUES (2, 'test 2');
|
||||||
|
CREATE PROCEDURE simpleproc3 ()
|
||||||
|
NOT DETERMINISTIC
|
||||||
|
BEGIN
|
||||||
|
INSERT INTO t (fname) (SELECT test3.comment FROM test3 WHERE test3.id = '1');
|
||||||
|
INSERT INTO t (fname) VALUES('test');
|
||||||
|
END
|
||||||
|
$
|
||||||
|
CALL simpleproc3();
|
||||||
|
select * from test3;
|
||||||
|
id comment
|
||||||
|
1 testtest 1
|
||||||
|
2 test 2
|
||||||
|
TRUNCATE TABLE `t`;
|
||||||
|
CALL simpleproc3();
|
||||||
|
select * from t;
|
||||||
|
id fname
|
||||||
|
1 testtest 1
|
||||||
|
2 test
|
||||||
|
use t1;
|
||||||
|
select * from t;
|
||||||
|
id fname
|
||||||
|
1 testtest 1
|
||||||
|
2 test
|
||||||
|
drop database t1;
|
59
mysql-test/t/rpl_auto_increment_11932.test
Normal file
59
mysql-test/t/rpl_auto_increment_11932.test
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
#
|
||||||
|
# Test of auto_increment
|
||||||
|
# BUG#11932
|
||||||
|
#
|
||||||
|
# Test supplied by Are Casilla
|
||||||
|
#
|
||||||
|
|
||||||
|
source include/master-slave.inc;
|
||||||
|
--disable_warnings
|
||||||
|
connection master;
|
||||||
|
drop database if exists t1;
|
||||||
|
--enable_warnings
|
||||||
|
create database t1;
|
||||||
|
use t1;
|
||||||
|
|
||||||
|
CREATE TABLE `t` (
|
||||||
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
`fname` varchar(100) default NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
||||||
|
|
||||||
|
INSERT INTO `t` VALUES (1, 'blablabla');
|
||||||
|
|
||||||
|
CREATE TABLE `test3` (
|
||||||
|
`id` int(10) NOT NULL auto_increment,
|
||||||
|
`comment` varchar(255) NOT NULL default '',
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=MyISAM AUTO_INCREMENT=3 ;
|
||||||
|
|
||||||
|
INSERT INTO `test3` VALUES (1, 'testtest 1');
|
||||||
|
INSERT INTO `test3` VALUES (2, 'test 2');
|
||||||
|
|
||||||
|
DELIMITER $;
|
||||||
|
CREATE PROCEDURE simpleproc3 ()
|
||||||
|
NOT DETERMINISTIC
|
||||||
|
BEGIN
|
||||||
|
INSERT INTO t (fname) (SELECT test3.comment FROM test3 WHERE test3.id = '1');
|
||||||
|
INSERT INTO t (fname) VALUES('test');
|
||||||
|
END
|
||||||
|
$
|
||||||
|
DELIMITER ;$
|
||||||
|
|
||||||
|
CALL simpleproc3();
|
||||||
|
|
||||||
|
select * from test3;
|
||||||
|
|
||||||
|
TRUNCATE TABLE `t`;
|
||||||
|
CALL simpleproc3();
|
||||||
|
|
||||||
|
select * from t;
|
||||||
|
|
||||||
|
save_master_pos;
|
||||||
|
connection slave;
|
||||||
|
sync_with_master;
|
||||||
|
|
||||||
|
use t1;
|
||||||
|
select * from t;
|
||||||
|
|
||||||
|
drop database t1;
|
Reference in New Issue
Block a user