Server IP : 172.67.216.182 / Your IP : 104.23.175.142 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 #22306581 VALGRIND FAILURE IN INNODB.TEMPORARY_TABLE # create temporary table t (i int) COMPRESSION = "ZLIB" ENGINE = InnoDB; ERROR HY000: Table storage engine for 't' doesn't have this option SHOW WARNINGS; Level Code Message Warning 138 InnoDB: Page Compression is not supported for temporary tables Error 1031 Table storage engine for 't' doesn't have this option create table t1(i INT) COMPRESSION="ZLIB" ENGINE=InnoDB TABLESPACE=innodb_system; ERROR HY000: Table storage engine for 't1' doesn't have this option SHOW WARNINGS; Level Code Message Warning 138 InnoDB: Page Compression is not supported for the system tablespace Error 1031 Table storage engine for 't1' doesn't have this option SET DEBUG ='+d, simulate_max_char_col'; create table t1(f1 varchar(1000))engine=innodb; ERROR HY000: Got error 1005 from storage engine SET DEBUG ='-d, simulate_max_char_col'; # # Bug #27361662 ERROR NOT THROWN ON CREATING TEMPORARY TABLE IN # INNODB_FILE_PER_TABLE TABLESPACE # "Try creating temporary table with innodb_file_per_table option with STRICT mode" SET innodb_strict_mode = ON; CREATE TEMPORARY TABLE t1(c1 int) TABLESPACE innodb_file_per_table; ERROR HY000: InnoDB: TABLESPACE=innodb_file_per_table option is disallowed for temporary tables with INNODB_STRICT_NODE=ON. This option is deprecated and will be removed in a future release SELECT COUNT(*) FROM t1; ERROR 42S02: Table 'test.t1' doesn't exist "Try creating temporary table with innodb_file_per_table option without STRICT mode" SET innodb_strict_mode = OFF; CREATE TEMPORARY TABLE t1(c1 int) TABLESPACE innodb_file_per_table; Warnings: Warning 1478 InnoDB: TABLESPACE=innodb_file_per_table option is ignored. This option is deprecated and will be removed in a future release. SHOW WARNINGS; Level Code Message Warning 1478 InnoDB: TABLESPACE=innodb_file_per_table option is ignored. This option is deprecated and will be removed in a future release. SELECT COUNT(*) FROM t1; COUNT(*) 0 DROP TABLE t1; SET innodb_strict_mode = default;