doltgresql
doltgresql copied to clipboard
`CREATE DOMAIN` support
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