⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
suite
/
ndb_big
/
View File Name :
rqg_spj.test
# The include statement below is a temp one for tests that are yet to #be ported to run with InnoDB, #but needs to be kept for tests that would need MyISAM in future. --source include/force_myisam_default.inc # # RQG SPJ # --source include/have_ndb.inc --source include/not_windows.inc --source include/not_embedded.inc --source suite/ndb/include/have_ndb_rqg.inc # Remember all SPJ conters when test started. --disable_query_log create temporary table spj_counts_at_startup select counter_name, sum(val) as val from ndbinfo.counters where block_name='DBSPJ' group by counter_name; --enable_query_log ## # Load simple.zz # -o => with "oj-extensions" --echo Calling: $LOAD_RQG -d simple.zz -o --exec bash -c "$LOAD_RQG -d simple.zz -o" ## # run spj_test.yy for 1800 seconds # # If you want to reproduce an "run" # add -s <seed value> to command below # # NOTE: CluB get unhappy if a testcase doesnt print for 1800 seconds # So call program several times instead # (having --exec print as it goes would also be nice...instead of # just at the end) # let $cmd = $RUN_RQG -g spj_test.yy -t 600; --echo Calling: $cmd (3 times) --exec bash -c "$cmd" --exec bash -c "$cmd" --exec bash -c "$cmd" drop database spj_innodb; drop database spj_ndb; --disable_query_log create temporary table spj_counts_at_end select counter_name, sum(val) as val from ndbinfo.counters where block_name='DBSPJ' group by counter_name; select spj_counts_at_end.counter_name, spj_counts_at_end.val - spj_counts_at_startup.val from spj_counts_at_startup, spj_counts_at_end where spj_counts_at_startup.counter_name = spj_counts_at_end.counter_name; --enable_query_log exit;