Server IP : 104.21.38.3 / Your IP : 172.71.81.181 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/innodb/t/ |
Upload File : |
--source include/have_innodb.inc # Embedded server does not support restarting --source include/not_embedded.inc --echo # --echo # Bug#19904800 - MISSING DBUG_RETURN IN HA_INNOBASE::UPDATE_ROW --echo # CREATE TABLE t1(a int PRIMARY KEY) ENGINE=InnoDB; CREATE TABLE t2(b int PRIMARY KEY) ENGINE=InnoDB; INSERT INTO t1 VALUES(1); INSERT INTO t2 VALUES(2); SET GLOBAL innodb_fast_shutdown=0; let $restart_parameters = restart: --innodb-read-only; --source include/restart_mysqld.inc --error ER_OPEN_AS_READONLY UPDATE t1,t2 SET t1.a = 2, t2.b = 2 WHERE t1.a = 1; # Restart in normal mode to drop tables let $restart_parameters = restart; --source include/restart_mysqld.inc DROP TABLE t1; DROP TABLE t2; --echo # --echo # Bug#20578834 - INNODB READ ONLY MODE AND NON EXISTENT TMP DIR CRASHES SERVER --echo # CREATE TABLE t1(a int PRIMARY KEY) ENGINE=InnoDB; INSERT INTO t1 VALUES(1); SET GLOBAL innodb_fast_shutdown=0; let $restart_parameters = restart: --tmpdir=/non/existent/dir/ --innodb-read-only; --source include/restart_mysqld.inc SELECT * FROM t1; # Restart in normal mode to drop tables let $restart_parameters = restart; --source include/restart_mysqld.inc DROP TABLE t1;