Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: CMT8.4.1.201203
-
Fix Version/s: CMT8.4.1.201203
-
Component/s: CUBRID Migration Toolkit
-
Labels:None
-
Environment:
source DB: mysql5.5
CUBRID:8.4.1.1018
CMT:8.4.1.0010
Description
1 Create three tables:
CREATE TABLE `A` (
`i` int(11) DEFAULT NULL,
KEY `A_ab` (`i`),
CONSTRAINT `A_ab` FOREIGN KEY (`i`) REFERENCES `ab` (`a`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
CREATE TABLE `a` (
`a` int(11) DEFAULT NULL,
`b` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8
CREATE TABLE `ab` (
`b` decimal(63,0) DEFAULT NULL,
`a` int(11) DEFAULT NULL,
KEY `id_a` (`a`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='aaaass'
2 Do migration, goto step 3, it will pop error. pls see the attachment.
fixed