8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.230 2002/09/2200:37:09 tgl Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.231 2002/09/2219:42:50 tgl Exp $
12
12
*
13
13
*
14
14
* INTERFACE ROUTINES
@@ -97,37 +97,37 @@ static void RemoveStatistics(Relation rel);
97
97
static FormData_pg_attribute a1 = {
98
98
0 , {"ctid" },TIDOID ,0 ,sizeof (ItemPointerData ),
99
99
SelfItemPointerAttributeNumber ,0 ,-1 ,-1 ,
100
- false,'p' , false,'i' , true, false, false
100
+ false,'p' , false,'i' , true, false, false, true, 0
101
101
};
102
102
103
103
static FormData_pg_attribute a2 = {
104
104
0 , {"oid" },OIDOID ,0 ,sizeof (Oid ),
105
105
ObjectIdAttributeNumber ,0 ,-1 ,-1 ,
106
- true,'p' , false,'i' , true, false, false
106
+ true,'p' , false,'i' , true, false, false, true, 0
107
107
};
108
108
109
109
static FormData_pg_attribute a3 = {
110
110
0 , {"xmin" },XIDOID ,0 ,sizeof (TransactionId ),
111
111
MinTransactionIdAttributeNumber ,0 ,-1 ,-1 ,
112
- true,'p' , false,'i' , true, false, false
112
+ true,'p' , false,'i' , true, false, false, true, 0
113
113
};
114
114
115
115
static FormData_pg_attribute a4 = {
116
116
0 , {"cmin" },CIDOID ,0 ,sizeof (CommandId ),
117
117
MinCommandIdAttributeNumber ,0 ,-1 ,-1 ,
118
- true,'p' , false,'i' , true, false, false
118
+ true,'p' , false,'i' , true, false, false, true, 0
119
119
};
120
120
121
121
static FormData_pg_attribute a5 = {
122
122
0 , {"xmax" },XIDOID ,0 ,sizeof (TransactionId ),
123
123
MaxTransactionIdAttributeNumber ,0 ,-1 ,-1 ,
124
- true,'p' , false,'i' , true, false, false
124
+ true,'p' , false,'i' , true, false, false, true, 0
125
125
};
126
126
127
127
static FormData_pg_attribute a6 = {
128
128
0 , {"cmax" },CIDOID ,0 ,sizeof (CommandId ),
129
129
MaxCommandIdAttributeNumber ,0 ,-1 ,-1 ,
130
- true,'p' , false,'i' , true, false, false
130
+ true,'p' , false,'i' , true, false, false, true, 0
131
131
};
132
132
133
133
/*
@@ -139,7 +139,7 @@ static FormData_pg_attribute a6 = {
139
139
static FormData_pg_attribute a7 = {
140
140
0 , {"tableoid" },OIDOID ,0 ,sizeof (Oid ),
141
141
TableOidAttributeNumber ,0 ,-1 ,-1 ,
142
- true,'p' , false,'i' , true, false, false
142
+ true,'p' , false,'i' , true, false, false, true, 0
143
143
};
144
144
145
145
static Form_pg_attribute SysAtt []= {& a1 ,& a2 ,& a3 ,& a4 ,& a5 ,& a6 ,& a7 };