Server IP : 104.21.38.3 / Your IP : 162.158.170.172 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/rpl/t/ |
Upload File : |
# # Test of auto_increment # BUG#11932 # # Bug reported that master and slave get out of sync after TRUNCATE # TABLE. # # Test supplied by Are Casilla source include/master-slave.inc; SET SESSION sql_log_bin= 0; call mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.'); SET SESSION sql_log_bin= 1; --disable_warnings connection master; drop database if exists test1; --enable_warnings create database test1; use test1; CREATE TABLE `t1` ( `id` int(10) unsigned NOT NULL auto_increment, `fname` varchar(100) default NULL, PRIMARY KEY (`id`) ) DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; INSERT INTO `t1` VALUES (1, 'blablabla'); CREATE TABLE `t2` ( `id` int(10) NOT NULL auto_increment, `comment` varchar(255) NOT NULL default '', PRIMARY KEY (`id`) ) AUTO_INCREMENT=3 ; INSERT INTO `t2` VALUES (1, 'testtest 1'); INSERT INTO `t2` VALUES (2, 'test 2'); DELIMITER $; CREATE PROCEDURE simpleproc3 () NOT DETERMINISTIC BEGIN INSERT INTO t1 (fname) (SELECT t2.comment FROM t2 WHERE t2.id = '1'); INSERT INTO t1 (fname) VALUES('test'); END $ DELIMITER ;$ --disable_warnings CALL simpleproc3(); --enable_warnings select * from t2; TRUNCATE TABLE `t1`; --disable_warnings CALL simpleproc3(); --enable_warnings select * from t1; --source include/sync_slave_sql_with_master.inc SET SESSION sql_log_bin= 0; call mtr.add_suppression('Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT.'); SET SESSION sql_log_bin= 1; use test1; select * from t1; connection master; drop database test1; --source include/rpl_end.inc