summaryrefslogtreecommitdiffstats
path: root/src/test/modules/test_ddl_deparse/expected/create_domain.out
blob: 2e7f5853f5120c09076013fd4b437eb60b0f3cf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
--- CREATE_DOMAIN
---
CREATE DOMAIN domainvarchar VARCHAR(5);
NOTICE:  DDL test: type simple, tag CREATE DOMAIN
CREATE DOMAIN japanese_postal_code AS TEXT
CHECK(
   VALUE ~ '^\d{3}$'
OR VALUE ~ '^\d{3}-\d{4}$'
);
NOTICE:  DDL test: type simple, tag CREATE DOMAIN