]> begriffs open source - ai-pg/blob - full-docs/txt/infoschema-domain-constraints.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / infoschema-domain-constraints.txt
1
2 35.21. domain_constraints #
3
4    The view domain_constraints contains all constraints belonging to
5    domains defined in the current database. Only those domains are shown
6    that the current user has access to (by way of being the owner or
7    having some privilege).
8
9    Table 35.19. domain_constraints Columns
10
11    Column Type
12
13    Description
14
15    constraint_catalog sql_identifier
16
17    Name of the database that contains the constraint (always the current
18    database)
19
20    constraint_schema sql_identifier
21
22    Name of the schema that contains the constraint
23
24    constraint_name sql_identifier
25
26    Name of the constraint
27
28    domain_catalog sql_identifier
29
30    Name of the database that contains the domain (always the current
31    database)
32
33    domain_schema sql_identifier
34
35    Name of the schema that contains the domain
36
37    domain_name sql_identifier
38
39    Name of the domain
40
41    is_deferrable yes_or_no
42
43    YES if the constraint is deferrable, NO if not
44
45    initially_deferred yes_or_no
46
47    YES if the constraint is deferrable and initially deferred, NO if not