-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
bugConfirmed bugs or reports that are very likely to be bugs.Confirmed bugs or reports that are very likely to be bugs.
Milestone
Description
We currently don't support BETWEEN checks in our column constraints. This breaks the UI for a tables like these:
CREATE TABLE not_working(
value INT CONSTRAINT "value" CHECK(value BETWEEN 1 AND 5)
);Keeping issue #40 in mind, it is also worth pointing out that the BETWEEN can also be negated:
CREATE TABLE not_working(
value INT CONSTRAINT "value" CHECK(value NOT BETWEEN 1 AND 5)
);Metadata
Metadata
Assignees
Labels
bugConfirmed bugs or reports that are very likely to be bugs.Confirmed bugs or reports that are very likely to be bugs.