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.219.241.228
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_keys_innodb.test
################################################################################ # t/gcol_keys_innodb.test # # # # Purpose: # # Testing keys, indexes defined upon generated columns. # # # # InnoDB branch # # # #------------------------------------------------------------------------------# # Original Author: Andrey Zhakov # # Original Date: 2008-09-04 # # Change Author: # # Change Date: # # Change: # ################################################################################ # # NOTE: PLEASE DO NOT ADD NOT MYISAM SPECIFIC TESTCASES HERE ! # TESTCASES WHICH MUST BE APPLIED TO ALL STORAGE ENGINES MUST BE ADDED IN # THE SOURCED FILES ONLY. # #------------------------------------------------------------------------------# # General not engine specific settings and requirements --source suite/gcol/inc/gcol_init_vars.pre #------------------------------------------------------------------------------# # Engine specific settings and requirements ##### Storage engine to be tested # Set the session storage engine --source include/have_innodb.inc eval SET @@session.default_storage_engine = 'InnoDB'; ##### Workarounds for known open engine specific bugs # none #------------------------------------------------------------------------------# # Execute the tests to be applied to all storage engines let $skip_spatial_index_check = 1; let $support_virtual_index= 1; --source suite/gcol/inc/gcol_keys.inc #------------------------------------------------------------------------------# # Execute storage engine specific tests --echo # --echo # BUG#21365158 WL8149:ASSERTION `!TABLE || (!TABLE->WRITE_SET --echo # CREATE TABLE t1 ( pk INTEGER AUTO_INCREMENT, col_int_nokey INTEGER NOT NULL, col_varchar_nokey VARCHAR(1) NOT NULL, col_varchar_key VARCHAR(2) GENERATED ALWAYS AS (CONCAT(col_varchar_nokey, col_varchar_nokey)) VIRTUAL not null, PRIMARY KEY (pk) ); INSERT INTO t1 ( col_int_nokey, col_varchar_nokey) VALUES (4, 'b'),(9, 'o'),(4, 'k'),(5, 'a'),(5, 'f'), (9, 't'),(3, 'c'),(8, 'c'),(0, 'r'),(98, 'k'); CREATE TABLE t2 ( pk INTEGER AUTO_INCREMENT, col_int_nokey INTEGER NOT NULL, col_varchar_nokey VARCHAR(1) NOT NULL, col_varchar_key VARCHAR(2) GENERATED ALWAYS AS (CONCAT(col_varchar_nokey, col_varchar_nokey)) VIRTUAL not null, PRIMARY KEY (pk), UNIQUE KEY (col_varchar_key) ); INSERT INTO t2 ( col_int_nokey, col_varchar_nokey) VALUES (1, 'c'),(8, 'm'),(9, 'd'), (6, 'y'),(1, 't'), (2, 's'),(4, 'r'); SELECT CONCAT( t2.col_varchar_nokey , t2.col_varchar_nokey ) AS f2, t1.col_varchar_key AS f5 FROM t2 LEFT JOIN t1 ON t2.col_int_nokey > t1.col_int_nokey ORDER BY f2, f5; DROP TABLE t1,t2; --echo # #------------------------------------------------------------------------------# # Cleanup --source suite/gcol/inc/gcol_cleanup.inc
Close