CREATE TABLE DBA.tab_comment (
EmployeeID integer NOT NULL,
ManagerID integer NULL,
Surname varchar(20) NOT NULL,
GivenName varchar(20) NOT NULL,
DepartmentID integer NOT NULL,
PRIMARY KEY(EmployeeID) IN iq_main
)
IN iq_main
GO
ALTER TABLE DBA.tab_comment
ADD CONSTRAINT fk_comment
FOREIGN KEY(ManagerID)
REFERENCES DBA.tab_comment(EmployeeID) IN iq_main
GO
COMMENT ON FOREIGN KEY DBA.tab_comment.fk_comment
IS 'Comment on foreign'
GO
COMMENT ON PRIMARY KEY ON DBA.tab_comment
IS 'Comment on primary key'
GO
|
184 KB
Database | ||
Sybase IQ-16.0 / 15.4 / 15.2 / 15.1 | ||
Windows | Ubuntu | |
ADS19.0-beta-27 | Y | Y |
Introduce version(comment support to the trigger, Index,constraint,procedure comment) ADS 19-alpah-13 | Y | Y |
Y - Yes, issue reproduced. N-issue is not reproduced. |
There is no current framework for modification of constraints in the GUI. The gui currently only supports adding and removing constraints. This is a feature request, not a bug. Moving issue to future release as a feature request.
There is no current framework for modification of constraints in the GUI. The gui currently only supports adding and removing constraints. This is a feature request, not a bug. Moving issue to future release as a feature request.
Issue #15406 |
New |
Completion |
No due date |
No fixed build |
No time estimate |
1 issue link |
is a duplicate of #15423
Issue #15423PostgreSQL: Primary key/foreign key comment option is disabled in Alter table GUI. |
N-issue is not reproduced.