Server IP : 104.21.38.3 / Your IP : 172.68.242.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 #22445211 GCOLS: SIMPLE DML, FAILING ASSERTION: #!CURSOR->INDEX->IS_COMMITTED() #Create and alter table examples for virtual column for full #column index followed by prefix index. CREATE TABLE t1( f1 INT DEFAULT NULL, f2 CHAR(2) GENERATED ALWAYS AS ('11') VIRTUAL, f3 INT, UNIQUE KEY(f1), UNIQUE KEY(f3,f1), KEY(f2,f1), key(f1,f2(1)) )ENGINE=INNODB; REPLACE INTO t1(f3) VALUES (1),(1); DROP TABLE t1; #Create and alter table examples for full column index followed by prefix index. CREATE TABLE t1( f1 VARCHAR(100), f2 char(2), KEY(f1,f2), KEY(f1(5)))ENGINE=INNODB; REPLACE INTO t1(f2) VALUES (1),(1); ALTER TABLE t1 ADD INDEX(f2,f1); DROP TABLE t1; #Create and alter table examples for small prefix index followed by large #prefix index. CREATE TABLE t1( f1 VARCHAR(100), f2 char(2), KEY(f1(5),f2), KEY(f1(10)))ENGINE=INNODB; REPLACE INTO t1(f2) VALUES (1),(1); ALTER TABLE t1 ADD INDEX(f2,f1); DROP TABLE t1; #Create and alter table examples for prefix index followed by full column #index. CREATE TABLE t1( f1 VARCHAR(100), f2 char(2), KEY(f1(5),f2), KEY(f1))ENGINE=INNODB; REPLACE INTO t1(f2) VALUES (1),(1); ALTER TABLE t1 ADD INDEX(f2,f1); DROP TABLE t1;