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:
jdk1.7.0_09
From online 8.3.1.2003 to offline 8.4.1.7007
Description
Not any index was import.
Please use the sql to reproduce this issue:
CREATE TABLE "dzl"(
"tint" integer NOT NULL,
"tset" set_of(integer),
CONSTRAINT pk_dzl_tint PRIMARY KEY("tint")
);
INSERT INTO "dzl"
(
"tint",
"tset"
)
VALUES
(32,{5,6});