Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
10.10.1.1
-
None
Description
Cf syntax description in ref/rrefsqlj16095.html:
Column-level-constraint
{
NOT NULL |
[ [CONSTRAINT constraint-Name]
{
CHECK (searchCondition) |
}
}
but actually this works:
create table t(i int constraint foo not null); The curly braces around primary, unique and references are redundant as well.