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.145.167.178
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_update.test
--source include/have_debug.inc --source include/have_innodb.inc # The embedded server does not support restarting. --source include/not_embedded.inc set global innodb_purge_stop_now = 1; # Index on virtual column create table t1(f1 int not null, f2 blob not null, f3 blob not null, vchar char(2) as (substr(f3,2,2)) virtual, primary key(f1, f3(5)), index(vchar))engine=innodb; insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000)); update t1 set f1=5 where f1=1; delete from t1 where f1=5; set global innodb_purge_run_now=1; set global innodb_fast_shutdown=0; --source include/restart_mysqld.inc set global innodb_purge_stop_now = 1; drop table t1; # Index on virtual column and blob create table t1(f1 int not null, f2 blob not null, f3 blob not null, vchar char(2) as (substr(f3,2,2)) virtual, primary key(f1, f3(5)), index(vchar, f3(2)))engine=innodb; insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000)); update t1 set f1=5 where f1=1; delete from t1 where f1=5; set global innodb_purge_run_now=1; set global innodb_fast_shutdown=0; --source include/restart_mysqld.inc set global innodb_purge_stop_now = 1; drop table t1; # Index on virtual column of blob type create table t1(f1 int not null, f2 blob not null, f3 blob not null, vchar blob as (f3) virtual, primary key(f1, f3(5)), index(vchar(3)))engine=innodb; insert into t1(f1,f2,f3) values(1, repeat('a',8000), repeat('b', 9000)); update t1 set f1=5 where f1=1; delete from t1 where f1=5; set global innodb_purge_run_now=1; set global innodb_fast_shutdown=0; --source include/restart_mysqld.inc drop table t1; --echo # --echo # Bug #26838771: GCOL: INCORRECT BEHAVIOR WITH UPDATE ON FLY --echo # CREATE TABLE t1(c1 INT); CREATE TABLE t2(c1 INT, c2 JSON, c3 varchar(15) GENERATED ALWAYS AS (concat(c2,_utf8mb4'x')) VIRTUAL); CREATE TABLE t3(c1 JSON, c2 INT GENERATED ALWAYS AS ((c1 + 1)) VIRTUAL); INSERT INTO t2(c1,c2) VALUES(1, '{"tr": "x"}'), (2, '{"tr": "x"}'); INSERT INTO t3(c1) VALUES(CAST(7 AS JSON)); --error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN UPDATE t3 SET c2 = 0; --error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN UPDATE t3 JOIN t2 ON (t3.c1 = t2.c1) SET t3.c2 = 0; --error ER_NON_DEFAULT_VALUE_FOR_GENERATED_COLUMN UPDATE t1 RIGHT JOIN t2 ON (t1.c1 = t2.c1), t3 SET t2.c2 = 'tr', t3.c2 = 0; DROP TABLE t1,t2,t3;
Close