Server IP : 172.67.216.182 / Your IP : 172.71.81.232 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 : |
create table bug51378 ( col1 int not null, col2 blob not null, col3 time not null) engine = innodb; create unique index idx on bug51378(col1, col2(31)); alter table bug51378 add unique index idx2(col1, col2(31)); Warnings: Warning 1831 Duplicate index 'idx2' defined on the table 'test.bug51378'. This is deprecated and will be disallowed in a future release. create unique index idx3 on bug51378(col1, col3); SHOW CREATE TABLE bug51378; Table Create Table bug51378 CREATE TABLE `bug51378` ( `col1` int(11) NOT NULL, `col2` blob NOT NULL, `col3` time NOT NULL, UNIQUE KEY `idx3` (`col1`,`col3`), UNIQUE KEY `idx` (`col1`,`col2`(31)), UNIQUE KEY `idx2` (`col1`,`col2`(31)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 drop index idx3 on bug51378; SHOW CREATE TABLE bug51378; Table Create Table bug51378 CREATE TABLE `bug51378` ( `col1` int(11) NOT NULL, `col2` blob NOT NULL, `col3` time NOT NULL, UNIQUE KEY `idx` (`col1`,`col2`(31)), UNIQUE KEY `idx2` (`col1`,`col2`(31)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 alter table bug51378 add primary key idx3(col1, col2(31)); SHOW CREATE TABLE bug51378; Table Create Table bug51378 CREATE TABLE `bug51378` ( `col1` int(11) NOT NULL, `col2` blob NOT NULL, `col3` time NOT NULL, PRIMARY KEY (`col1`,`col2`(31)), UNIQUE KEY `idx` (`col1`,`col2`(31)), UNIQUE KEY `idx2` (`col1`,`col2`(31)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 drop table bug51378; create table bug51378 ( col1 int not null, col2 blob not null, col3 time not null, primary key(col1, col2(31))) engine = innodb; create unique index idx on bug51378(col1, col2(31)); SHOW CREATE TABLE bug51378; Table Create Table bug51378 CREATE TABLE `bug51378` ( `col1` int(11) NOT NULL, `col2` blob NOT NULL, `col3` time NOT NULL, PRIMARY KEY (`col1`,`col2`(31)), UNIQUE KEY `idx` (`col1`,`col2`(31)) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 drop table bug51378; create table bug51378 ( col1 int not null, col2 int ) engine = innodb; create unique index idx on bug51378(col1, col2); SHOW CREATE TABLE bug51378; Table Create Table bug51378 CREATE TABLE `bug51378` ( `col1` int(11) NOT NULL, `col2` int(11) DEFAULT NULL, UNIQUE KEY `idx` (`col1`,`col2`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 drop table bug51378;