Commit 832089c4 authored by grog@mysql.com's avatar grog@mysql.com

rpl_auto_increment_11932.result, rpl_auto_increment_11932.test:

  Update with correct table and database names.
parent 59fac3ea
...@@ -4,43 +4,43 @@ reset master; ...@@ -4,43 +4,43 @@ reset master;
reset slave; reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave; start slave;
drop database if exists t1; drop database if exists test1;
create database t1; create database test1;
use t1; use test1;
CREATE TABLE `t` ( CREATE TABLE `t1` (
`id` int(10) unsigned NOT NULL auto_increment, `id` int(10) unsigned NOT NULL auto_increment,
`fname` varchar(100) default NULL, `fname` varchar(100) default NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
INSERT INTO `t` VALUES (1, 'blablabla'); INSERT INTO `t1` VALUES (1, 'blablabla');
CREATE TABLE `test3` ( CREATE TABLE `t2` (
`id` int(10) NOT NULL auto_increment, `id` int(10) NOT NULL auto_increment,
`comment` varchar(255) NOT NULL default '', `comment` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 ; ) ENGINE=MyISAM AUTO_INCREMENT=3 ;
INSERT INTO `test3` VALUES (1, 'testtest 1'); INSERT INTO `t2` VALUES (1, 'testtest 1');
INSERT INTO `test3` VALUES (2, 'test 2'); INSERT INTO `t2` VALUES (2, 'test 2');
CREATE PROCEDURE simpleproc3 () CREATE PROCEDURE simpleproc3 ()
NOT DETERMINISTIC NOT DETERMINISTIC
BEGIN BEGIN
INSERT INTO t (fname) (SELECT test3.comment FROM test3 WHERE test3.id = '1'); INSERT INTO t1 (fname) (SELECT t2.comment FROM t2 WHERE t2.id = '1');
INSERT INTO t (fname) VALUES('test'); INSERT INTO t1 (fname) VALUES('test');
END END
$ $
CALL simpleproc3(); CALL simpleproc3();
select * from test3; select * from t2;
id comment id comment
1 testtest 1 1 testtest 1
2 test 2 2 test 2
TRUNCATE TABLE `t`; TRUNCATE TABLE `t1`;
CALL simpleproc3(); CALL simpleproc3();
select * from t; select * from t1;
id fname id fname
1 testtest 1 1 testtest 1
2 test 2 test
use t1; use test1;
select * from t; select * from t1;
id fname id fname
1 testtest 1 1 testtest 1
2 test 2 test
drop database t1; drop database test1;
...@@ -2,58 +2,60 @@ ...@@ -2,58 +2,60 @@
# Test of auto_increment # Test of auto_increment
# BUG#11932 # BUG#11932
# #
# Test supplied by Are Casilla # Bug reported that master and slave get out of sync after TRUNCATE
# TABLE.
# #
# Test supplied by Are Casilla
source include/master-slave.inc; source include/master-slave.inc;
--disable_warnings --disable_warnings
connection master; connection master;
drop database if exists t1; drop database if exists test1;
--enable_warnings --enable_warnings
create database t1; create database test1;
use t1; use test1;
CREATE TABLE `t` ( CREATE TABLE `t1` (
`id` int(10) unsigned NOT NULL auto_increment, `id` int(10) unsigned NOT NULL auto_increment,
`fname` varchar(100) default NULL, `fname` varchar(100) default NULL,
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
INSERT INTO `t` VALUES (1, 'blablabla'); INSERT INTO `t1` VALUES (1, 'blablabla');
CREATE TABLE `test3` ( CREATE TABLE `t2` (
`id` int(10) NOT NULL auto_increment, `id` int(10) NOT NULL auto_increment,
`comment` varchar(255) NOT NULL default '', `comment` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`) PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 ; ) ENGINE=MyISAM AUTO_INCREMENT=3 ;
INSERT INTO `test3` VALUES (1, 'testtest 1'); INSERT INTO `t2` VALUES (1, 'testtest 1');
INSERT INTO `test3` VALUES (2, 'test 2'); INSERT INTO `t2` VALUES (2, 'test 2');
DELIMITER $; DELIMITER $;
CREATE PROCEDURE simpleproc3 () CREATE PROCEDURE simpleproc3 ()
NOT DETERMINISTIC NOT DETERMINISTIC
BEGIN BEGIN
INSERT INTO t (fname) (SELECT test3.comment FROM test3 WHERE test3.id = '1'); INSERT INTO t1 (fname) (SELECT t2.comment FROM t2 WHERE t2.id = '1');
INSERT INTO t (fname) VALUES('test'); INSERT INTO t1 (fname) VALUES('test');
END END
$ $
DELIMITER ;$ DELIMITER ;$
CALL simpleproc3(); CALL simpleproc3();
select * from test3; select * from t2;
TRUNCATE TABLE `t`; TRUNCATE TABLE `t1`;
CALL simpleproc3(); CALL simpleproc3();
select * from t; select * from t1;
save_master_pos; save_master_pos;
connection slave; connection slave;
sync_with_master; sync_with_master;
use t1; use test1;
select * from t; select * from t1;
drop database t1; drop database test1;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment