|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.114 2004/06/10 18:25:02 tgl Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/commands/tablecmds.c,v 1.115 2004/06/10 18:34:45 tgl Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
@@ -2706,6 +2706,8 @@ ATPrepAddColumn(List **wqueue, Relation rel, bool recurse, |
2706 | 2706 | /* Child should see column as singly inherited */ |
2707 | 2707 | colDefChild->inhcount=1; |
2708 | 2708 | colDefChild->is_local= false; |
| 2709 | +/* and don't make a support dependency on the child */ |
| 2710 | +colDefChild->support=NULL; |
2709 | 2711 |
|
2710 | 2712 | ATOneLevelRecursion(wqueue,rel,childCmd); |
2711 | 2713 | } |
|