Server IP : 104.21.38.3 / Your IP : 172.71.81.216 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_team/t/ |
Upload File : |
# The include statement below is a temp one for tests that are yet to #be ported to run with InnoDB, #but needs to be kept for tests that would need MyISAM in future. --source include/force_myisam_default.inc --source include/have_ndb.inc # # Setup # let $ndb_mgm_cmd = $NDB_MGM --no-defaults --verbose=0; let $ndb_waiter_cmd = $NDB_WAITER --no-defaults; # # Create test table # create table t1(a int primary key, b int) engine = ndb; insert into t1 values (1, 2); # # Restart node 1 # --exec $ndb_mgm_cmd -e "1 RESTART -n" --exec $ndb_waiter_cmd --nowait-nodes=2 --not-started > /dev/null --exec $ndb_mgm_cmd -e "1 START" --exec $ndb_waiter_cmd > /dev/null # Check table is still there select * from t1 order by a; insert into t1 values (2, 3); # # Restart node 1 --initial # --exec $ndb_mgm_cmd -e "1 RESTART -n -I" --exec $ndb_waiter_cmd --nowait-nodes=2 --not-started > /dev/null --exec $ndb_mgm_cmd -e "1 START" --exec $ndb_waiter_cmd > /dev/null # Check table is still there select * from t1 order by a; insert into t1 values (3, 4); # # Restart all # --exec $ndb_mgm_cmd -e "ALL RESTART -N" --exec $ndb_waiter_cmd --not-started > /dev/null --exec $ndb_mgm_cmd -e "ALL START" --exec $ndb_waiter_cmd > /dev/null # Wait for mysqld to reconnect --disable_result_log --disable_query_log --source include/ndb_not_readonly.inc --enable_result_log --enable_query_log # Check table is still there select * from t1 order by a; insert into t1 values (4, 5); # # Restart all initial # # need to save/restore backup-id --disable_query_log --source include/ndb_backup_id.inc --enable_query_log --exec $ndb_mgm_cmd -e "ALL RESTART -N -I" --exec $ndb_waiter_cmd --not-started > /dev/null --exec $ndb_mgm_cmd -e "ALL START" --exec $ndb_waiter_cmd > /dev/null --inc $the_backup_id --exec $NDB_MGM --no-defaults -e "start backup $the_backup_id" >> $NDB_TOOLS_OUTPUT # Wait for mysqld to reconnect --disable_result_log --disable_query_log --source include/ndb_not_readonly.inc --enable_result_log --enable_query_log # Check table is gone --error ER_NO_SUCH_TABLE select * from t1;