Server IP : 172.67.216.182 / Your IP : 162.158.107.18 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/ndb_binlog/t/ |
Upload File : |
-- source include/have_ndb.inc -- source include/have_binlog_format_row.inc # Let's create some Binlog show variables like '%binlog_format%'; use test; create table test.t1 (a int primary key, b int) engine=myisam; create table test.notes (a varchar(1000)) engine=myisam; reset master; # Autocommit, transaction per statement insert into test.notes values ("Scattered single statement transactions"); insert into test.t1 values (1,1); insert into test.t1 values (2,2); update test.t1 set b=20 where a=2; delete from test.t1 where a=1; insert into test.notes values ("Some composite transactions, starting with diff ops"); begin; insert into t1 values (10,10); update t1 set b=11 where a=10; commit; begin; update t1 set b=20 where a=10; insert into t1 values (21,21); commit; begin; delete from t1 where a=10; update t1 set b=22 where a=21; commit; insert into test.notes values ("Some composite transactions with multiple ops"); begin; insert into t1 values (30,30); insert into t1 values (31,31); insert into t1 values (32,32); insert into t1 values (33,33); insert into t1 values (34,34); insert into t1 values (35,35); insert into t1 values (36,36); insert into t1 values (37,37); insert into t1 values (38,38); insert into t1 values (39,39); commit; begin; update t1 set b=b+10 where a >= 30; commit; begin; delete from t1 where a >= 30; commit; flush logs; drop table test.t1; drop table test.notes; create table test.t1 (a int primary key, b int) engine=ndb; create table test.notes (a varchar(1000)) engine=ndb; let $MYSQLD_DATADIR= `select @@datadir;`; --exec $MYSQL_BINLOG $MYSQLD_DATADIR/mysqld-bin.000001 > $MYSQLTEST_VARDIR/tmp/ndb_binlog_mysqlbinlog.sql --exec $MYSQL -uroot < $MYSQLTEST_VARDIR/tmp/ndb_binlog_mysqlbinlog.sql --sorted_result select * from test.t1; drop table test.t1; drop table test.notes;