2006-05-03 08:58:11 +02:00
|
|
|
#
|
|
|
|
# Test of auto_increment
|
|
|
|
# BUG#11932
|
|
|
|
#
|
2006-05-22 02:38:13 +02:00
|
|
|
# Bug reported that master and slave get out of sync after TRUNCATE
|
|
|
|
# TABLE.
|
2006-05-03 08:58:11 +02:00
|
|
|
#
|
2006-05-22 02:38:13 +02:00
|
|
|
# Test supplied by Are Casilla
|
2006-05-03 08:58:11 +02:00
|
|
|
|
|
|
|
source include/master-slave.inc;
|
|
|
|
--disable_warnings
|
|
|
|
connection master;
|
2006-05-22 02:38:13 +02:00
|
|
|
drop database if exists test1;
|
2006-05-03 08:58:11 +02:00
|
|
|
--enable_warnings
|
2006-05-22 02:38:13 +02:00
|
|
|
create database test1;
|
|
|
|
use test1;
|
2006-05-03 08:58:11 +02:00
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
CREATE TABLE `t1` (
|
2006-05-03 08:58:11 +02:00
|
|
|
`id` int(10) unsigned NOT NULL auto_increment,
|
|
|
|
`fname` varchar(100) default NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
|
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
INSERT INTO `t1` VALUES (1, 'blablabla');
|
2006-05-03 08:58:11 +02:00
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
CREATE TABLE `t2` (
|
2006-05-03 08:58:11 +02:00
|
|
|
`id` int(10) NOT NULL auto_increment,
|
|
|
|
`comment` varchar(255) NOT NULL default '',
|
|
|
|
PRIMARY KEY (`id`)
|
|
|
|
) ENGINE=MyISAM AUTO_INCREMENT=3 ;
|
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
INSERT INTO `t2` VALUES (1, 'testtest 1');
|
|
|
|
INSERT INTO `t2` VALUES (2, 'test 2');
|
2006-05-03 08:58:11 +02:00
|
|
|
|
|
|
|
DELIMITER $;
|
|
|
|
CREATE PROCEDURE simpleproc3 ()
|
|
|
|
NOT DETERMINISTIC
|
|
|
|
BEGIN
|
2006-05-22 02:38:13 +02:00
|
|
|
INSERT INTO t1 (fname) (SELECT t2.comment FROM t2 WHERE t2.id = '1');
|
|
|
|
INSERT INTO t1 (fname) VALUES('test');
|
2006-05-03 08:58:11 +02:00
|
|
|
END
|
|
|
|
$
|
|
|
|
DELIMITER ;$
|
|
|
|
|
|
|
|
CALL simpleproc3();
|
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
select * from t2;
|
2006-05-03 08:58:11 +02:00
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
TRUNCATE TABLE `t1`;
|
2006-05-03 08:58:11 +02:00
|
|
|
CALL simpleproc3();
|
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
select * from t1;
|
2006-05-03 08:58:11 +02:00
|
|
|
|
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
use test1;
|
|
|
|
select * from t1;
|
2006-05-03 08:58:11 +02:00
|
|
|
|
2006-05-22 02:38:13 +02:00
|
|
|
drop database test1;
|
2006-05-22 04:48:18 +02:00
|
|
|
connection master;
|
|
|
|
drop database test1;
|