Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: CMT8.4.3.201212
-
Fix Version/s: CMT8.4.3.201212
-
Component/s: CUBRID Migration Toolkit
-
Labels:
Description
MySQL source table:
CREATE TABLE hnt_noti_confirm(
user_id varchar(10),
confirm_memo_idx int NOT NULL primary key,
is_open char(1),
opendate date,
regdate date);
Add SQL table as following:
SELECT
a.user_id AS memberid,
a.confirm_memo_idx AS notimastseq,
CASE WHEN is_open='Y' THEN a.opendate
WHEN is_open='N' THEN a.regdate END AS confirmdt,
'R' AS status
FROM
hnt_noti_confirm a
It is caused by CMT can't find the mapping of "UNKOWN" data type from MySQL.
By default, the "UNKNOWN" will be mapping to varchar in CUBRID.