⚝
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
/
sys_vars
/
r
/
View File Name :
myisam_data_pointer_size_func.result
call mtr.add_suppression("The table 't1' is full"); '#--------------------FN_DYNVARS_093_01-------------------------#' SET @start_value= @@global.myisam_data_pointer_size; SET @@global.myisam_data_pointer_size = 2; 'connect (con1,localhost,root,,,,)' 'connection con1' SELECT @@global.myisam_data_pointer_size; @@global.myisam_data_pointer_size 2 SET @@global.myisam_data_pointer_size = 3; 'connect (con2,localhost,root,,,,)' 'connection con2' SELECT @@global.myisam_data_pointer_size; @@global.myisam_data_pointer_size 3 '#--------------------FN_DYNVARS_093_02-------------------------#' 'connection con1' DROP PROCEDURE IF EXISTS sp_addRec; DROP TABLE IF EXISTS t1; CREATE PROCEDURE sp_addRec(IN count INT) BEGIN WHILE (count>0) DO INSERT INTO t1 value(1); SET count = count -1; END WHILE; END // SET @@global.myisam_data_pointer_size = 2; CREATE TABLE t1(a INT); CALL sp_addRec(65535); CALL sp_addRec(1); ERROR HY000: The table 't1' is full SELECT count(*) from t1; count(*) 65535 '--Checking myisam_data_pointer_size with MAX_ROWS table option--' SET @@global.myisam_data_pointer_size = 2; DROP TABLE IF EXISTS t1; CREATE TABLE t1(a INT)MAX_ROWS=70000; CALL sp_addRec(65536); SELECT count(*) from t1; count(*) 65536 DROP PROCEDURE sp_addRec; DROP TABLE t1; SET @@global.myisam_data_pointer_size= @start_value;