Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Duplicate
-
Affects Version/s: CM8.4.3.201211
-
Fix Version/s: CMT8.4.1.201211
-
Component/s: CUBRID Migration Toolkit
-
Labels:
-
Environment:
From CUBRID8.4.1.7007 to CUBRID9.0.0.0478
CMT 8.4.1.3083
Description
1 Create one table
CREATE TABLE "reoid1"(
"shared1" integer SHARED 4,
"i" integer AUTO_INCREMENT NOT NULL,
CONSTRAINT pk_reoid1_i PRIMARY KEY("i")
) REUSE_OID ;
2 Do migration from online to online.
The table schedule, become to :
CREATE TABLE "reoid1"(
"shared1" integer(10) DEFAULT 4,
"i" integer(10) AUTO_INCREMENT(3,1) NOT NULL,
CONSTRAINT pk_reoid1_i PRIMARY KEY("i")
);
refer to
TOOLS-2190