Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: CMT8.4.1.201203
-
Fix Version/s: CMT8.4.1.201203
-
Component/s: CUBRID Migration Toolkit
-
Labels:None
-
Environment:
CMT:8.4.1.0011
Description
When do partition table migration, goto step4, click partition tab.
Actual result
There isn't "" in partition fields target ddl.
Additional
do the migration, it will pop error
CREATE TABLE "tt1"(
"id" integer,
"data" integer
)
PARTITION BY LIST (data) (
PARTITION p0 VALUES IN (5,10,15),
PARTITION p1 VALUES IN (6,12,18)
)
But if we do migration by the sql, it's ok
CREATE TABLE "tt1"(
"id" integer,
"data" integer
)
PARTITION BY LIST ("data") (
PARTITION p0 VALUES IN (5,10,15),
PARTITION p1 VALUES IN (6,12,18)
)
Fixed in CMT8.4.1.0014