403Webshell
Server IP : 172.67.216.182  /  Your IP : 172.70.142.236
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/t/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/server/mysql/src/mysql-test/suite/innodb/t/innodb_bug21704.test
-- source include/have_innodb.inc

--echo #
--echo # Bug#21704: Renaming column does not update FK definition.
--echo #

--echo
--echo # Test that it's not possible to rename columns participating in a
--echo # foreign key (either in the referencing or referenced table).
--echo

CREATE TABLE t1 (a INT PRIMARY KEY, b INT) ROW_FORMAT=COMPACT ENGINE=INNODB;

CREATE TABLE t2 (a INT PRIMARY KEY, b INT,
                 CONSTRAINT fk1 FOREIGN KEY (a) REFERENCES t1(a))
ROW_FORMAT=COMPACT ENGINE=INNODB;

CREATE TABLE t3 (a INT PRIMARY KEY, b INT, KEY(b), C INT,
  CONSTRAINT fk2 FOREIGN KEY (b) REFERENCES t3 (a))
ROW_FORMAT=COMPACT ENGINE=INNODB;

INSERT INTO t1 VALUES (1,1),(2,2),(3,3);
INSERT INTO t2 VALUES (1,1),(2,2),(3,3);
INSERT INTO t3 VALUES (1,1,1),(2,2,2),(3,3,3);

--echo
--echo # Test renaming the column in the referenced table.
--echo

--enable_info
ALTER TABLE t1 CHANGE a e INT;

--echo # Ensure that online column rename works.

ALTER TABLE t1 CHANGE b c INT;

--echo
--echo # Test renaming the column in the referencing table
--echo

ALTER TABLE t2 CHANGE a z INT;

--echo # Ensure that online column rename works.

ALTER TABLE t2 CHANGE b c INT;

--echo
--echo # Test with self-referential constraints
--echo

ALTER TABLE t3 CHANGE a f INT;

ALTER TABLE t3 CHANGE b g INT;

--echo # Ensure that online column rename works.

ALTER TABLE t3 CHANGE c d INT;

--echo
--echo # Cleanup.
--echo

--disable_info
SHOW CREATE TABLE t1;
SHOW CREATE TABLE t2;
SHOW CREATE TABLE t3;

SELECT f.*, c.*
FROM INFORMATION_SCHEMA.INNODB_SYS_FOREIGN_COLS c
INNER JOIN INFORMATION_SCHEMA.INNODB_SYS_FOREIGN f
ON c.ID=f.ID
WHERE FOR_NAME LIKE 'test/t%';

DROP TABLE t3;
DROP TABLE t2;
DROP TABLE t1;

Youez - 2016 - github.com/yon3zu
LinuXploit