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 | : 13.59.196.41
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 /
gcol /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
gcol_archive.test
2.16
KB
-rw-r--r--
gcol_blackhole.test
2.17
KB
-rw-r--r--
gcol_blocked_sql_funcs_innodb....
2.27
KB
-rw-r--r--
gcol_blocked_sql_funcs_myisam....
2.21
KB
-rw-r--r--
gcol_bug20746926.test
715
B
-rw-r--r--
gcol_bugfixes.test
20.91
KB
-rw-r--r--
gcol_column_def_options_innodb...
2.35
KB
-rw-r--r--
gcol_column_def_options_myisam...
2.31
KB
-rw-r--r--
gcol_handler_innodb.test
2.24
KB
-rw-r--r--
gcol_handler_myisam.test
2.21
KB
-rw-r--r--
gcol_ins_upd_innodb.test
2.33
KB
-rw-r--r--
gcol_ins_upd_myisam.test
2.3
KB
-rw-r--r--
gcol_keys_innodb.test
3.48
KB
-rw-r--r--
gcol_keys_myisam.test
2.3
KB
-rw-r--r--
gcol_memory.test
2.13
KB
-rw-r--r--
gcol_merge.test
2.45
KB
-rw-r--r--
gcol_ndb.test
2.38
KB
-rw-r--r--
gcol_non_stored_columns_innodb...
2.47
KB
-rw-r--r--
gcol_non_stored_columns_myisam...
2.44
KB
-rw-r--r--
gcol_partition_innodb.test
2.31
KB
-rw-r--r--
gcol_partition_myisam.test
2.27
KB
-rw-r--r--
gcol_rejected_innodb.test
1.85
KB
-rw-r--r--
gcol_rejected_myisam.test
1.8
KB
-rw-r--r--
gcol_rollback.test
2.19
KB
-rw-r--r--
gcol_select_innodb.test
2.56
KB
-rw-r--r--
gcol_select_myisam.test
2.53
KB
-rw-r--r--
gcol_supported_sql_funcs_innod...
2.24
KB
-rw-r--r--
gcol_supported_sql_funcs_myisa...
2.21
KB
-rw-r--r--
gcol_trigger_sp_innodb.test
2.39
KB
-rw-r--r--
gcol_trigger_sp_myisam.test
2.35
KB
-rw-r--r--
gcol_update.test
2.34
KB
-rw-r--r--
gcol_view_innodb.test
2.3
KB
-rw-r--r--
gcol_view_myisam.test
2.27
KB
-rw-r--r--
rpl_gcol.test
3.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : gcol_rollback.test
--source include/have_debug.inc --source include/have_innodb.inc --source include/have_debug_sync.inc --source include/not_embedded.inc # Save the initial number of concurrent sessions. --source include/count_sessions.inc CREATE TABLE t ( a INTEGER, b BLOB GENERATED ALWAYS AS (a) VIRTUAL, INDEX (b(57)) )ENGINE=INNODB; INSERT INTO t (a) VALUES (9); BEGIN; SAVEPOINT a; UPDATE t set a = 12; DELETE FROM t where a = 12; ROLLBACK TO SAVEPOINT a; COMMIT; CHECK TABLE t; SELECT * FROM t; BEGIN; INSERT INTO t (a) VALUES (10); --source include/kill_and_restart_mysqld.inc SELECT * FROM t; DROP TABLE t; CREATE TABLE t ( a INTEGER, b BLOB GENERATED ALWAYS AS (a) VIRTUAL, c INTEGER )ENGINE=INNODB; INSERT INTO t (a,c) VALUES (9, 10); SELECT * FROM t; connect (con1,localhost,root,,); connection con1; # This DEBUG_SYNC should not kick in yet, because the duplicate key will be # detected before we get a chance to apply the online log. SET DEBUG_SYNC = 'row_log_apply_after SIGNAL created WAIT_FOR dml_done'; --send ALTER TABLE t ADD KEY(b(57)), ALGORITHM=INPLACE; connection default; SET DEBUG_SYNC = 'now WAIT_FOR created'; BEGIN; INSERT INTO t (a,c) VALUES (10, 12); SELECT * FROM t; ROLLBACK; SET DEBUG_SYNC = 'now SIGNAL dml_done'; connection con1; reap; disconnect con1; connection default; SELECT * FROM t; DROP TABLE t; # drop virtual column and alter index CREATE TABLE t ( a INT, b INT, c INT GENERATED ALWAYS AS(a+b), d INT GENERATED ALWAYS AS(a+b+b), KEY(c, d) )ENGINE=INNODB; INSERT INTO t (a,b) VALUES (9, 10); SELECT * FROM t; connect (con1,localhost,root,,); connection con1; # This DEBUG_SYNC should not kick in yet, because the duplicate key will be # detected before we get a chance to apply the online log. SET DEBUG_SYNC = 'row_log_apply_after SIGNAL created WAIT_FOR dml_done'; --send ALTER TABLE t DROP COLUMN c, ALGORITHM=INPLACE; connection default; SET DEBUG_SYNC = 'now WAIT_FOR created'; BEGIN; INSERT INTO t (a,b) VALUES (10, 12); SELECT * FROM t; ROLLBACK; SET DEBUG_SYNC = 'now SIGNAL dml_done'; connection con1; reap; disconnect con1; connection default; SELECT * FROM t; DROP TABLE t; # Wait till all disconnects are completed --source include/wait_until_count_sessions.inc
Close