doltgresql icon indicating copy to clipboard operation
doltgresql copied to clipboard

`CREATE DOMAIN` support

Open fulghum opened this issue 1 year ago • 0 comments
trafficstars

Doltgres does not yet support user-defined datatypes, created through CREATE DOMAIN.

Example:

CREATE DOMAIN year AS integer
        CONSTRAINT year_check CHECK (((VALUE >= 1901) AND (VALUE <= 2155)));

Discovered through testing the sakila data dump

fulghum avatar Sep 25 '24 20:09 fulghum