| 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/main/ |
Upload File : |
# # MDEV-23836: Assertion `! is_set() || m_can_overwrite_status' in # Diagnostics_area::set_error_status (interrupted ALTER TABLE under LOCK) # CREATE TABLE t1 (a INT); SELECT * FROM t1; a ALTER TABLE x MODIFY xx INT; ERROR 42S02: Table 'test.x' doesn't exist SET SESSION max_session_mem_used= 8192; LOCK TABLE t1 WRITE; ALTER TABLE t1 CHANGE COLUMN IF EXISTS b c INT; SET SESSION max_session_mem_used = DEFAULT; UNLOCK TABLES; DROP TABLE t1; # # MDEV-27978 wrong option name in error when exceeding max_session_mem_used # SET SESSION max_session_mem_used = 8192; SELECT * FROM information_schema.processlist; ERROR HY000: The MariaDB server is running with the --max-session-mem-used=8192 option so it cannot execute this statement SET SESSION max_session_mem_used = DEFAULT; set max_session_mem_used = 50000; select * from seq_1_to_1000; set max_session_mem_used = 8192; select * from seq_1_to_1000; set max_session_mem_used = DEFAULT; # # MDEV-35828: Assertion fails in alloc_root() when memory causes it to call itself # CREATE TEMPORARY TABLE t1 (a INT,b INT); INSERT INTO t1 VALUES (1,1),(2,2); SET max_session_mem_used=8192; SELECT * FROM (t1 AS t2 LEFT JOIN t1 AS t3 USING (a)),t1; ERROR HY000: The MariaDB server is running with the --max-session-mem-used=8192 option so it cannot execute this statement SET max_session_mem_used=DEFAULT; DROP TABLE t1; # # MDEV-23824 SIGSEGV in end_io_cache on REPAIR LOCAL TABLE for Aria table # CREATE TABLE t1 (i INT) ENGINE=Aria; INSERT INTO t1 VALUES (1); SET max_session_mem_used=50000; REPAIR LOCAL TABLE t1 USE_FRM; REPAIR LOCAL TABLE t1; DROP TABLE t1; SET max_session_mem_used=default; # # MDEV-38005 Assertion `(yyvsp[-3].simple_string) < (yyvsp[-1].simple_string)' failed # SET max_session_mem_used=1; Warnings: Warning 1292 Truncated incorrect max_session_mem_used value: '1' CREATE TABLE t SELECT 1000000000000000000000000000000000000000000000000000000000000000000000000000000001 AS c; ERROR HY000: The MariaDB server is running with the --max-session-mem-used=8192 option so it cannot execute this statement SET max_session_mem_used=default; # End of 10.6 tests