Server IP : 104.21.38.3 / Your IP : 162.158.107.2 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/r/ |
Upload File : |
# # Bug #21950389 SMALL TABLESPACES WITH BLOBS TAKE UP TO 80 TIMES MORE # SPACE IN 5.7 THAN IN 5.6 # SET GLOBAL innodb_file_per_table=ON; CREATE TABLE t1 (a INT PRIMARY KEY) ENGINE=InnoDB; Empty table: The size of file 'test/t1.ibd' is 98304 bytes. Rows inserted: 5000 The size of file 'test/t1.ibd' is 212992 bytes. Rows inserted: 10000 The size of file 'test/t1.ibd' is 344064 bytes. Rows inserted: 15000 The size of file 'test/t1.ibd' is 458752 bytes. Rows inserted: 20000 The size of file 'test/t1.ibd' is 589824 bytes. Rows inserted: 25000 The size of file 'test/t1.ibd' is 9437184 bytes. DROP TABLE t1; CREATE TABLE t2 (a INT PRIMARY KEY, b BLOB) ENGINE=InnoDB; Empty table: The size of file 'test/t2.ibd' is 98304 bytes. Rows inserted: 4 The size of file 'test/t2.ibd' is 196608 bytes. Rows inserted: 8 The size of file 'test/t2.ibd' is 327680 bytes. Rows inserted: 12 The size of file 'test/t2.ibd' is 458752 bytes. Rows inserted: 16 The size of file 'test/t2.ibd' is 589824 bytes. Rows inserted: 20 The size of file 'test/t2.ibd' is 4194304 bytes. DROP TABLE t2; CREATE TABLE t3 (a INT PRIMARY KEY, b BLOB) ENGINE=InnoDB ROW_FORMAT=COMPRESSED KEY_BLOCK_SIZE=1; Empty table: The size of file 'test/t3.ibd' is 65536 bytes. Rows inserted: 8 The size of file 'test/t3.ibd' is 65536 bytes. Rows inserted: 16 The size of file 'test/t3.ibd' is 65536 bytes. Rows inserted: 24 The size of file 'test/t3.ibd' is 65536 bytes. Rows inserted: 32 The size of file 'test/t3.ibd' is 5242880 bytes. Rows inserted: 40 The size of file 'test/t3.ibd' is 5242880 bytes. DROP TABLE t3; SET GLOBAL innodb_file_per_table=default;