? src/backend/commands/.deps ? src/backend/commands/.typecmds.c.swp Index: src/backend/commands/typecmds.c =================================================================== RCS file: /projects/cvsroot/pgsql-server/src/backend/commands/typecmds.c,v retrieving revision 1.20 diff -c -r1.20 typecmds.c *** src/backend/commands/typecmds.c 2002/12/06 05:00:11 1.20 --- src/backend/commands/typecmds.c 2002/12/07 13:51:56 *************** *** 1234,1240 **** List *rels; List *rt; Form_pg_type typTup; ! char *ccbin; Node *expr; int counter = 0; Constraint *constr; --- 1234,1240 ---- List *rels; List *rt; Form_pg_type typTup; ! char *ccbin = NULL; Node *expr; int counter = 0; Constraint *constr; *************** *** 1425,1430 **** --- 1425,1431 ---- while ((classTup = heap_getnext(classScan, ForwardScanDirection)) != NULL) { bool addToList = true; + relToCheck *rtc = NULL; /* Keep compiler quiet */ int nkeys = 0; HeapTuple attTup; HeapScanDesc attScan; *************** *** 1447,1453 **** /* Scan through pg_attribute for attributes based on the domain */ while ((attTup = heap_getnext(attScan, ForwardScanDirection)) != NULL) { - relToCheck *rtc; /* Make the list entries for the relation */ if (addToList) --- 1448,1453 ----