Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: CMT8.4.1.201205
-
Fix Version/s: CMT8.4.1.201209, CMT8.4.1.201211
-
Component/s: CUBRID Migration Toolkit
-
Labels:
-
Environment:
CMT8.4.1.0028
Description
1There one table
CREATE TABLE "auto"
UNDER "parent"(
"i" integer AUTO_INCREMENT,
"cdefault" character(1) DEFAULT '1',
"bshare" integer SHARED 2
);
After online migration, the table becomes:
CREATE TABLE "auto"(
"id" integer,
"i" integer AUTO_INCREMENT,
"cdefault" character(1) DEFAULT '1',
"bshare" integer DEFAULT 2,
CONSTRAINT pk_auto_id PRIMARY KEY("id")
);
There is existed in offline migration