Fix my oversight in enabling domains-of-domains: ALTER DOMAIN ADD CONSTRAINT
authorTom Lane <[email protected]>
Fri, 11 May 2007 20:18:21 +0000 (20:18 +0000)
committerTom Lane <[email protected]>
Fri, 11 May 2007 20:18:21 +0000 (20:18 +0000)
needs to check the new constraint against columns of derived domains too.

Also, make it error out if the domain to be modified is used within any
composite-type columns.  Eventually we should support that case, but it seems
a bit painful, and not suitable for a back-patch.  For the moment just let the
user know we can't do it.

Backpatch to 8.2, which is the only released version that allows nested
domains.  Possibly the other part should be back-patched further.

doc/src/sgml/ref/alter_domain.sgml
src/backend/commands/tablecmds.c
src/backend/commands/typecmds.c
src/include/commands/tablecmds.h
src/test/regress/expected/domain.out
src/test/regress/sql/domain.sql

index cb16f7db82c0392d2978b6a3f6527f8335fbadd9..c92b35c3f1ee81a57bbdc9353f26bac974deae9c 100644 (file)
@@ -197,6 +197,19 @@ ALTER DOMAIN <replaceable class="PARAMETER">name</replaceable>
    </para>
   </refsect1>
 
+ <refsect1>
+  <title>Notes</title>
+
+  <para>
+   Currently, <command>ALTER DOMAIN ADD CONSTRAINT</> and
+   <command>ALTER DOMAIN SET NOT NULL</> will fail if the named domain or
+   any derived domain is used within a composite-type column of any
+   table in the database.  They should eventually be improved to be
+   able to verify the new constraint for such nested columns.
+  </para>
+
+ </refsect1>
+
  <refsect1>
   <title>Examples</title>
 
index 90f129d1b6aabb160c90220dc6b00b76ad9e25ef..296a6db6051e9bc9d7da97437c1ea65ad52398c6 100644 (file)
@@ -204,8 +204,6 @@ static void ATSimpleRecursion(List **wqueue, Relation rel,
                                  AlterTableCmd *cmd, bool recurse);
 static void ATOneLevelRecursion(List **wqueue, Relation rel,
                                        AlterTableCmd *cmd);
-static void find_composite_type_dependencies(Oid typeOid,
-                                                                const char *origTblName);
 static void ATPrepAddColumn(List **wqueue, Relation rel, bool recurse,
                                AlterTableCmd *cmd);
 static void ATExecAddColumn(AlteredTableInfo *tab, Relation rel,
@@ -2590,7 +2588,8 @@ ATRewriteTable(AlteredTableInfo *tab, Oid OIDNewHeap)
         */
        if (newrel)
                find_composite_type_dependencies(oldrel->rd_rel->reltype,
-                                                                                RelationGetRelationName(oldrel));
+                                                                                RelationGetRelationName(oldrel),
+                                                                                NULL);
 
        /*
         * Generate the constraint and default execution states
@@ -2992,16 +2991,21 @@ ATOneLevelRecursion(List **wqueue, Relation rel,
 /*
  * find_composite_type_dependencies
  *
- * Check to see if a table's rowtype is being used as a column in some
+ * Check to see if a composite type is being used as a column in some
  * other table (possibly nested several levels deep in composite types!).
  * Eventually, we'd like to propagate the check or rewrite operation
  * into other such tables, but for now, just error out if we find any.
  *
+ * Caller should provide either a table name or a type name (not both) to
+ * report in the error message, if any.
+ *
  * We assume that functions and views depending on the type are not reasons
  * to reject the ALTER.  (How safe is this really?)
  */
-static void
-find_composite_type_dependencies(Oid typeOid, const char *origTblName)
+void
+find_composite_type_dependencies(Oid typeOid,
+                                                                const char *origTblName,
+                                                                const char *origTypeName)
 {
        Relation        depRel;
        ScanKeyData key[2];
@@ -3043,12 +3047,20 @@ find_composite_type_dependencies(Oid typeOid, const char *origTblName)
 
                if (rel->rd_rel->relkind == RELKIND_RELATION)
                {
-                       ereport(ERROR,
-                                       (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
-                                        errmsg("cannot alter table \"%s\" because column \"%s\".\"%s\" uses its rowtype",
-                                                       origTblName,
-                                                       RelationGetRelationName(rel),
-                                                       NameStr(att->attname))));
+                       if (origTblName)
+                               ereport(ERROR,
+                                               (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
+                                                errmsg("cannot alter table \"%s\" because column \"%s\".\"%s\" uses its rowtype",
+                                                               origTblName,
+                                                               RelationGetRelationName(rel),
+                                                               NameStr(att->attname))));
+                       else
+                               ereport(ERROR,
+                                               (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
+                                                errmsg("cannot alter type \"%s\" because column \"%s\".\"%s\" uses it",
+                                                               origTypeName,
+                                                               RelationGetRelationName(rel),
+                                                               NameStr(att->attname))));
                }
                else if (OidIsValid(rel->rd_rel->reltype))
                {
@@ -3057,7 +3069,7 @@ find_composite_type_dependencies(Oid typeOid, const char *origTblName)
                         * recursively check for indirect dependencies via its rowtype.
                         */
                        find_composite_type_dependencies(rel->rd_rel->reltype,
-                                                                                        origTblName);
+                                                                                        origTblName, origTypeName);
                }
 
                relation_close(rel, AccessShareLock);
index 060505f46b11c6a760243f22bb426506ef5f6105..52c458e017d4b0f8930bbf03e7ee9441e5bdb37f 100644 (file)
@@ -1600,6 +1600,10 @@ AlterDomainAddConstraint(List *names, Node *newConstraint)
  * the domain type.  We have opened each rel and acquired the specified lock
  * type on it.
  *
+ * We support nested domains by including attributes that are of derived
+ * domain types.  Current callers do not need to distinguish between attributes
+ * that are of exactly the given domain and those that are of derived domains.
+ *
  * XXX this is completely broken because there is no way to lock the domain
  * to prevent columns from being added or dropped while our command runs.
  * We can partially protect against column drops by locking relations as we
@@ -1609,9 +1613,11 @@ AlterDomainAddConstraint(List *names, Node *newConstraint)
  * trivial risk of deadlock.  We can minimize but not eliminate the deadlock
  * risk by using the weakest suitable lock (ShareLock for most callers).
  *
- * XXX to support domains over domains, we'd need to make this smarter,
- * or make its callers smarter, so that we could find columns of derived
- * domains.  Arrays of domains would be a problem too.
+ * XXX the API for this is not sufficient to support checking domain values
+ * that are inside composite types or arrays.  Currently we just error out
+ * if a composite type containing the target domain is stored anywhere.
+ * There are not currently arrays of domains; if there were, we could take
+ * the same approach, but it'd be nicer to fix it properly.
  *
  * Generally used for retrieving a list of tests when adding
  * new constraints to a domain.
@@ -1653,7 +1659,23 @@ get_rels_with_domain(Oid domainOid, LOCKMODE lockmode)
                Form_pg_attribute pg_att;
                int                     ptr;
 
-               /* Ignore dependees that aren't user columns of relations */
+               /* Check for directly dependent types --- must be domains */
+               if (pg_depend->classid == TypeRelationId)
+               {
+                       Assert(get_typtype(pg_depend->objid) == 'd');
+                       /*
+                        * Recursively add dependent columns to the output list.  This
+                        * is a bit inefficient since we may fail to combine RelToCheck
+                        * entries when attributes of the same rel have different derived
+                        * domain types, but it's probably not worth improving.
+                        */
+                       result = list_concat(result,
+                                                                get_rels_with_domain(pg_depend->objid,
+                                                                                                         lockmode));
+                       continue;
+               }
+
+               /* Else, ignore dependees that aren't user columns of relations */
                /* (we assume system columns are never of domain types) */
                if (pg_depend->classid != RelationRelationId ||
                        pg_depend->objsubid <= 0)
@@ -1679,7 +1701,16 @@ get_rels_with_domain(Oid domainOid, LOCKMODE lockmode)
                        /* Acquire requested lock on relation */
                        rel = relation_open(pg_depend->objid, lockmode);
 
-                       /* It could be a view or composite type; if so ignore it */
+                       /*
+                        * Check to see if rowtype is stored anyplace as a composite-type
+                        * column; if so we have to fail, for now anyway.
+                        */
+                       if (OidIsValid(rel->rd_rel->reltype))
+                               find_composite_type_dependencies(rel->rd_rel->reltype,
+                                                                                                NULL,
+                                                                                                format_type_be(domainOid));
+
+                       /* Otherwise we can ignore views, composite types, etc */
                        if (rel->rd_rel->relkind != RELKIND_RELATION)
                        {
                                relation_close(rel, lockmode);
index c650cf8b79e5befb9678d22da1a055e2724f03f8..b69a7b19052578907ac224389e802e8ebe9b7868 100644 (file)
@@ -45,6 +45,10 @@ extern void renameatt(Oid myrelid,
 extern void renamerel(Oid myrelid,
                  const char *newrelname);
 
+extern void find_composite_type_dependencies(Oid typeOid,
+                                                                                        const char *origTblName,
+                                                                                        const char *origTypeName);
+
 extern AttrNumber *varattnos_map(TupleDesc old, TupleDesc new);
 extern AttrNumber *varattnos_map_schema(TupleDesc old, List *schema);
 extern void change_varattnos_of_a_node(Node *node, const AttrNumber *newattno);
index 8e432e1cb846b8710959eb8a74c6258377ac591a..ba6e9ff3362c3a7a95a2bc2d621e1bd5471f81c7 100644 (file)
@@ -438,3 +438,27 @@ select doubledecrement(3); -- good
                1
 (1 row)
 
+-- Check that ALTER DOMAIN tests columns of derived types
+create domain posint as int4;
+-- Currently, this doesn't work for composite types, but verify it complains
+create type ddtest1 as (f1 posint);
+create table ddtest2(f1 ddtest1);
+insert into ddtest2 values(row(-1));
+alter domain posint add constraint c1 check(value >= 0);
+ERROR:  cannot alter type "posint" because column "ddtest2"."f1" uses it
+drop table ddtest2;
+alter domain posint add constraint c1 check(value >= 0);
+create domain posint2 as posint check (value % 2 = 0);
+create table ddtest2(f1 posint2);
+insert into ddtest2 values(11); -- fail
+ERROR:  value for domain posint2 violates check constraint "posint2_check"
+insert into ddtest2 values(-2); -- fail
+ERROR:  value for domain posint2 violates check constraint "c1"
+insert into ddtest2 values(2);
+alter domain posint add constraint c2 check(value >= 10); -- fail
+ERROR:  column "f1" of table "ddtest2" contains values that violate the new constraint
+alter domain posint add constraint c2 check(value > 0); -- OK
+drop table ddtest2;
+drop type ddtest1;
+drop domain posint cascade;
+NOTICE:  drop cascades to type posint2
index 4e103172edfb2d11bd4e64a5863f66ae037957d0..56f7c46236e9411514380fac6a3e211dd7fdf984 100644 (file)
@@ -351,3 +351,29 @@ select doubledecrement(0); -- fail before call
 select doubledecrement(1); -- fail at assignment to v
 select doubledecrement(2); -- fail at return
 select doubledecrement(3); -- good
+
+-- Check that ALTER DOMAIN tests columns of derived types
+
+create domain posint as int4;
+
+-- Currently, this doesn't work for composite types, but verify it complains
+create type ddtest1 as (f1 posint);
+create table ddtest2(f1 ddtest1);
+insert into ddtest2 values(row(-1));
+alter domain posint add constraint c1 check(value >= 0);
+drop table ddtest2;
+
+alter domain posint add constraint c1 check(value >= 0);
+
+create domain posint2 as posint check (value % 2 = 0);
+create table ddtest2(f1 posint2);
+insert into ddtest2 values(11); -- fail
+insert into ddtest2 values(-2); -- fail
+insert into ddtest2 values(2);
+
+alter domain posint add constraint c2 check(value >= 10); -- fail
+alter domain posint add constraint c2 check(value > 0); -- OK
+
+drop table ddtest2;
+drop type ddtest1;
+drop domain posint cascade;