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.140.247.39
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 : rpl_gcol.test
################################################################################ # t/gcol_rpl.test # # # # Purpose: # # Test replication of tables with generated columns. # # # #------------------------------------------------------------------------------# # 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 SET @@session.default_storage_engine = 'InnoDB'; ##### Workarounds for known open engine specific bugs # none #------------------------------------------------------------------------------# # Execute the tests to be applied to all storage engines --source include/master-slave.inc connection master; create table t1 (a int, b int generated always as (a+1) virtual); show create table t1; insert into t1 values (1,default); insert into t1 values (2,default); select * from t1; save_master_pos; connection slave; sync_with_master; select * from t1; connection master; drop table t1; save_master_pos; connection slave; sync_with_master; --echo # --echo # Bug#22241015: REPLICATION SERVERS CRASHES WHILE CHANGING A --echo # VALUE OF INDEXED JSON FIELD --echo # # Use master connection --connection master CREATE TABLE gtable (doc JSON); INSERT INTO gtable (doc) VALUES ('{"id": 1, "name": "Omar Bras"}'), ('{"id": 2, "name": "Omar Mex"}'); ALTER TABLE gtable ADD COLUMN gtext TEXT GENERATED ALWAYS AS (JSON_UNQUOTE(JSON_EXTRACT(doc, '$.name'))) VIRTUAL, ADD UNIQUE INDEX name_index (gtext(50)); UPDATE gtable SET doc=JSON_SET(doc,'$.name',"Omar Argentina") WHERE JSON_EXTRACT(doc, "$.id") = 2; INSERT INTO gtable(doc) VALUES (NULL); SELECT * FROM gtable; UPDATE gtable SET doc= '{ "id": 4, "name": "Omar Ara" }' where doc IS NULL; SELECT * FROM gtable ORDER BY gtext; UPDATE gtable SET doc= NULL WHERE JSON_EXTRACT(doc, "$.id") = 4; SELECT * FROM gtable ORDER BY gtext; --source include/sync_slave_sql_with_master.inc SHOW CREATE TABLE gtable; --echo # Connection:slave - Row with value 3 is expected on slave. SELECT * FROM gtable ORDER BY gtext; --let $diff_tables= master:gtable, slave:gtable --source include/diff_tables.inc #cleanup --connection master DROP TABLE gtable; ## Postamble --source include/sync_slave_sql_with_master.inc #------------------------------------------------------------------------------# # Execute storage engine specific tests #------------------------------------------------------------------------------# # Cleanup --source suite/gcol/inc/gcol_cleanup.inc --source include/rpl_end.inc
Close