Server IP : 172.67.216.182 / Your IP : 162.158.108.45 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 #20582149 INVALID READ OF SIZE 1 IN PROTOCOL::NET_STORE_DATA # CREATE TABLE t1 (f1 INT NOT NULL, f2 text, PRIMARY KEY(f1)) PARTITION BY KEY() PARTITIONS 4; INSERT INTO t1 VALUES(42,'Testing MySQL databases is a cool '); INSERT INTO t1 VALUES(2,'Testing MySQL databases is a cool '); INSERT INTO t1 VALUES(4,'Testing MySQL databases is a cool '); select f1, f2 from t1 order by f1; f1 f2 2 Testing MySQL databases is a cool 4 Testing MySQL databases is a cool 42 Testing MySQL databases is a cool DROP TABLE IF EXISTS t1; # # Bug #20685835 INVALID READ OF BLOB MEMORY # # Test correlated subquery with LOB CREATE TABLE t1 (f1 INT, f2 TEXT, f3 INT, PRIMARY KEY(f1)) PARTITION BY HASH(f1) PARTITIONS 1; INSERT INTO t1 VALUES(1,'1', 3); INSERT INTO t1 VALUES(2,'2', 2); INSERT INTO t1 VALUES(3,'3', 2); SELECT DISTINCT f3 FROM t1 HAVING (SELECT 1 FROM t1 HAVING f2 LIMIT 1) ORDER BY f3; f3 2 3 DROP TABLE t1; # # Bug #28491099 [FATAL] MEMORY BLOCK IS INVALID | INNODB: ASSERTION # FAILURE: UT0UT.CC:670 # set sql_mode=''; Warnings: Warning 3090 Changing sql mode 'NO_AUTO_CREATE_USER' is deprecated. It will be removed in a future release. CREATE TABLE t1(a INT, b TEXT NOT NULL) PARTITION BY RANGE(a) (PARTITION p0 VALUES LESS THAN (6), PARTITION p1 VALUES LESS THAN (9), PARTITION p2 VALUES LESS THAN MAXVALUE); INSERT INTO t1(a) VALUES(0); Warnings: Warning 1364 Field 'b' doesn't have a default value ALTER TABLE t1 ADD COLUMN c DATE NOT NULL; ALTER TABLE t1 drop partition p0; ALTER TABLE t1 ADD COLUMN d DATE NOT NULL; DROP TABLE t1; SET sql_mode = default;