Server IP : 172.67.216.182 / Your IP : 172.68.242.44 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 : |
# Mixed DDL-DML (CREATE ... SELECT ...) statements can only be # replicated properly in statement-based replication. # Currently statement based due to bug 12345 --source include/have_binlog_format_mixed_or_statement.inc --source include/not_group_replication_plugin.inc --source include/not_gtid_enabled.inc source include/master-slave.inc; # Test replication of auto_increment #Get default engine value WL#6921 --let $DEFAULT_ENGINE = `select @@global.default_storage_engine` create table t1 (n int auto_increment primary key); set insert_id = 2000; insert into t1 values (NULL),(NULL),(NULL); --source include/sync_slave_sql_with_master.inc select * from t1; connection master; --source include/show_slave_hosts.inc drop table t1; --source include/sync_slave_sql_with_master.inc stop slave; --source include/wait_for_slave_to_stop.inc connection master; # Test replication of timestamp create table t2(id int auto_increment primary key, created datetime); set timestamp=12345; insert into t2 set created=now(); select * from t2; # Test replication of CREATE .. LIKE (Bug #2557) create table t3 like t2; create temporary table t4 like t2; create table t5 select * from t4; save_master_pos; connection slave; start slave; --source include/wait_for_slave_to_start.inc sync_with_master; select * from t2; #Replace default engine value with static engine string WL#6921 --replace_result $DEFAULT_ENGINE ENGINE show create table t3; --replace_result $DEFAULT_ENGINE ENGINE show create table t5; connection master; drop table t2,t3,t5; drop temporary table if exists t4; --source include/sync_slave_sql_with_master.inc # End of 4.1 tests --source include/rpl_end.inc