@@ -100,12 +100,6 @@ CATALOG(pg_constraint,2606)
100
100
*/
101
101
int16 conkey [1 ];
102
102
103
- /*
104
- * Columns of conrelid that the constraint does not apply to,
105
- * but included into the same index with key columns.
106
- */
107
- int16 conincluding [1 ];
108
-
109
103
/*
110
104
* If a foreign key, the referenced columns of confrelid
111
105
*/
@@ -144,6 +138,12 @@ CATALOG(pg_constraint,2606)
144
138
* If a check constraint, source-text representation of expression
145
139
*/
146
140
text consrc ;
141
+
142
+ /*
143
+ * Columns of conrelid that the constraint does not apply to,
144
+ * but included into the same index with key columns.
145
+ */
146
+ int16 conincluding [1 ];
147
147
#endif
148
148
}FormData_pg_constraint ;
149
149
@@ -176,14 +176,15 @@ typedef FormData_pg_constraint *Form_pg_constraint;
176
176
#define Anum_pg_constraint_coninhcount 15
177
177
#define Anum_pg_constraint_connoinherit 16
178
178
#define Anum_pg_constraint_conkey 17
179
- #define Anum_pg_constraint_conincluding 18
180
- #define Anum_pg_constraint_confkey 19
181
- #define Anum_pg_constraint_conpfeqop 20
182
- #define Anum_pg_constraint_conppeqop 21
183
- #define Anum_pg_constraint_conffeqop 22
184
- #define Anum_pg_constraint_conexclop 23
185
- #define Anum_pg_constraint_conbin 24
186
- #define Anum_pg_constraint_consrc 25
179
+ #define Anum_pg_constraint_confkey 18
180
+ #define Anum_pg_constraint_conpfeqop 19
181
+ #define Anum_pg_constraint_conppeqop 20
182
+ #define Anum_pg_constraint_conffeqop 21
183
+ #define Anum_pg_constraint_conexclop 22
184
+ #define Anum_pg_constraint_conbin 23
185
+ #define Anum_pg_constraint_consrc 24
186
+ #define Anum_pg_constraint_conincluding 25
187
+
187
188
188
189
189
190
/* Valid values for contype */