Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: CM8.4.1.201208, CQB8.4.1.201208
-
Fix Version/s: CM8.4.1.201210, CQB8.4.1.201210
-
Component/s: CUBRID Manager, CUBRID Query Browser
-
Labels:
Description
1. create the code_t table and create a unique index as the follow.
CREATE TABLE "code_t"(
"s_name" character(1),
"f_name" character varying(6)
);
CREATE UNIQUE INDEX "uk_1" ON "code_t"("s_name");
2. copy "create ddl" to clipboard as attached image, so you can see as the follow.
CREATE TABLE "code_t"( "s_name" character(1) UNIQUE, "f_name" character varying(6) );
But, users want to get a ddl as the follow.
CREATE UNIQUE INDEX "uk_1" ON "code_t"("s_name");
We should fix it, and we also should check compatible with cubrid 2.2.

Fixed in CQB8.4.1.2343 and CM8.4.1.2349