Server IP : 172.67.216.182 / Your IP : 162.158.106.163 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_zip/r/ |
Upload File : |
# # This tests the use of large blobs in InnoDB. # call mtr.add_suppression("InnoDB: Warning: a long semaphore wait"); SET GLOBAL innodb_file_per_table = OFF; # # System tablespace, Row Format = Redundant # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=REDUNDANT; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; # # System tablespace, Row Format = Compact # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; SET GLOBAL innodb_file_per_table = ON; # # Separate tablespace, Row Format = Redundant # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=REDUNDANT; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; # # Separate tablespace, Row Format = Compact # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=COMPACT; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; # # Separate tablespace, Row Format = Compressed, Key Block Size = 2k # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 KEY_BLOCK_SIZE=2; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; # # Separate tablespace, Row Format = Compressed, Key Block Size = 1k # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 KEY_BLOCK_SIZE=1; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1; # # Separate tablespace, Row Format = Dynamic # CREATE TABLE t1 ( c1 INT DEFAULT NULL, c2 LONGBLOB NOT NULL, KEY k2 (c2(250), c1) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC; INSERT INTO t1 VALUES (1, ''); UPDATE t1 SET c2=@longblob; DROP TABLE t1;