| 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/maria/ |
Upload File : |
# # MDEV-30971 Add a new system variable aria_data_home_dir # # restart: --loose-aria-log-file-size=8388608 --loose-aria-log-dir-path=MYSQLTEST_VARDIR/tmp/aria_log_dir_path_1 SET @@global.aria_log_purge_type=external; SHOW VARIABLES LIKE 'aria_log_file_size'; Variable_name Value aria_log_file_size 8388608 SELECT @@aria_log_dir_path; @@aria_log_dir_path MYSQLTEST_VARDIR/tmp/aria_log_dir_path_1 SET @@global.aria_checkpoint_interval=DEFAULT /*Force checkpoint*/; SHOW ENGINE aria logs; Type Name Status Aria aria_log.00000001 in use CREATE TABLE t1 (id INT, txt LONGTEXT) ENGINE=Aria; BEGIN NOT ATOMIC FOR id IN 0..9 DO INSERT INTO test.t1 (id, txt) VALUES (id, REPEAT(id,1024*1024)); END FOR; END; $$ SET @@global.aria_checkpoint_interval=DEFAULT /*Force checkpoint*/; SHOW ENGINE aria logs; Type Name Status Aria aria_log.00000001 free Aria aria_log.00000002 in use DROP TABLE t1; # restart