|
7 | 7 | *
|
8 | 8 | *
|
9 | 9 | * IDENTIFICATION
|
10 |
| - * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.43 1998/01/06 19:42:27 momjian Exp $ |
| 10 | + * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.44 1998/02/05 19:02:44 momjian Exp $ |
11 | 11 | *
|
12 | 12 | * INTERFACE ROUTINES
|
13 | 13 | *heap_create()- Create an uncataloged heap relation
|
@@ -97,32 +97,32 @@ static void RemoveConstraints(Relation rel);
|
97 | 97 |
|
98 | 98 | staticFormData_pg_attributea1= {
|
99 | 99 | 0xffffffff, {"ctid"},27l,0l,sizeof(ItemPointerData),
|
100 |
| -SelfItemPointerAttributeNumber,0,-1,'\0','\0','i','\0','\0' |
| 100 | +SelfItemPointerAttributeNumber,0,-1,0,'\0','\0','i','\0','\0' |
101 | 101 | };
|
102 | 102 |
|
103 | 103 | staticFormData_pg_attributea2= {
|
104 | 104 | 0xffffffff, {"oid"},26l,0l,sizeof(Oid),
|
105 |
| -ObjectIdAttributeNumber,0,-1,'\001','\0','i','\0','\0' |
| 105 | +ObjectIdAttributeNumber,0,-1,0,'\001','\0','i','\0','\0' |
106 | 106 | };
|
107 | 107 |
|
108 | 108 | staticFormData_pg_attributea3= {
|
109 | 109 | 0xffffffff, {"xmin"},28l,0l,sizeof(TransactionId),
|
110 |
| -MinTransactionIdAttributeNumber,0,-1,'\0','\0','i','\0','\0' |
| 110 | +MinTransactionIdAttributeNumber,0,-1,0,'\0','\0','i','\0','\0' |
111 | 111 | };
|
112 | 112 |
|
113 | 113 | staticFormData_pg_attributea4= {
|
114 | 114 | 0xffffffff, {"cmin"},29l,0l,sizeof(CommandId),
|
115 |
| -MinCommandIdAttributeNumber,0,-1,'\001','\0','i','\0','\0' |
| 115 | +MinCommandIdAttributeNumber,0,-1,0,'\001','\0','i','\0','\0' |
116 | 116 | };
|
117 | 117 |
|
118 | 118 | staticFormData_pg_attributea5= {
|
119 | 119 | 0xffffffff, {"xmax"},28l,0l,sizeof(TransactionId),
|
120 |
| -MaxTransactionIdAttributeNumber,0,-1,'\0','\0','i','\0','\0' |
| 120 | +MaxTransactionIdAttributeNumber,0,-1,0,'\0','\0','i','\0','\0' |
121 | 121 | };
|
122 | 122 |
|
123 | 123 | staticFormData_pg_attributea6= {
|
124 | 124 | 0xffffffff, {"cmax"},29l,0l,sizeof(CommandId),
|
125 |
| -MaxCommandIdAttributeNumber,0,-1,'\001','\0','i','\0','\0' |
| 125 | +MaxCommandIdAttributeNumber,0,-1,0,'\001','\0','i','\0','\0' |
126 | 126 | };
|
127 | 127 |
|
128 | 128 | staticAttributeTupleFormHeapAtt[]=
|
|