Server IP : 104.21.38.3 / Your IP : 172.69.176.42 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 echo Start first backup; --replace_regex /[0-9]+/X/ --exec $NDB_MGM --no-defaults --verbose=0 -e "start backup" create table t1 (pk int key ,a1 BIT(1), a2 BIT(5), a3 BIT(33), a4 BIT(63), a5 BIT(64) ,b1 TINYINT, b2 TINYINT UNSIGNED ,c1 SMALLINT, c2 SMALLINT UNSIGNED ,d1 INT, d2 INT UNSIGNED ,e1 BIGINT, e2 BIGINT UNSIGNED ,f1 CHAR(1) BINARY, f2 CHAR(32) BINARY, f3 CHAR(255) BINARY ,g1 VARCHAR(32) BINARY, g2 VARCHAR(255) BINARY, g3 VARCHAR(1000) BINARY ,h1 BINARY(1), h2 BINARY(8), h3 BINARY(255) ,i1 VARBINARY(32), i2 VARBINARY(255), i3 VARBINARY(1000) ) engine ndb; insert into t1 values (1 ,0x1, 0x17, 0x789a, 0x789abcde, 0xfedc0001 ,127, 255 ,32767, 65535 ,2147483647, 4294967295 ,9223372036854775807, 18446744073709551615 ,'1','12345678901234567890123456789012','123456789' ,'1','12345678901234567890123456789012','123456789' ,0x12,0x123456789abcdef0, 0x012345 ,0x12,0x123456789abcdef0, 0x00123450 ); insert into t1 values (2 ,0, 0, 0, 0, 0 ,-128, 0 ,-32768, 0 ,-2147483648, 0 ,-9223372036854775808, 0 ,'','','' ,'','','' ,0x0,0x0,0x0 ,0x0,0x0,0x0 ); insert into t1 values (3 ,NULL,NULL,NULL,NULL,NULL ,NULL,NULL ,NULL,NULL ,NULL,NULL ,NULL,NULL ,NULL,NULL,NULL ,NULL,NULL,NULL ,NULL,NULL,NULL ,NULL,NULL,NULL ); echo Start second backup; --replace_regex /[0-9]+/X/ --exec $NDB_MGM --no-defaults --verbose=0 -e "start backup" drop table t1;