Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: CMT8.4.1.201211
-
Fix Version/s: CMT8.4.1.201211
-
Component/s: CUBRID Migration Toolkit
-
Labels:
-
Environment:
CMT8.4.1.3081
Description
1 Create one table as follows in mysql.
/*
MySQL Data Transfer
Source Host: 10.34.64.148
Source Database: CMT
Target Host: 10.34.64.148
Target Database: CMT
Date: 2012-10-31 19:13:23
*/
SET FOREIGN_KEY_CHECKS=0;
– ----------------------------
– Table structure for indexorder
– ----------------------------
CREATE TABLE `indexorder` (
`a` int(11) DEFAULT NULL,
`b` int(11) DEFAULT NULL,
`c` int(11) DEFAULT NULL,
KEY `ab` (`a`,`b`),
KEY `ba` (`b`,`a`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
– ----------------------------
– Records
– ----------------------------
2 Do migration, goto step3
Actual result:
The two index display same. and in migration, it will pop error.please see attachment.
fixed