aboutsummaryrefslogtreecommitdiff
path: root/src/backend/catalog/heap.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/catalog/heap.c')
-rw-r--r--src/backend/catalog/heap.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c
index 33a22f25aad..a8f8f276bde 100644
--- a/src/backend/catalog/heap.c
+++ b/src/backend/catalog/heap.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.51 1998/06/15 19:28:07 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.52 1998/07/12 23:41:18 momjian Exp $
*
* INTERFACE ROUTINES
* heap_create() - Create an uncataloged heap relation
@@ -97,32 +97,32 @@ static void RemoveConstraints(Relation rel);
*/
static FormData_pg_attribute a1 = {
- 0xffffffff, {"ctid"}, 27l, 0l, sizeof(ItemPointerData),
+ 0xffffffff, {"ctid"}, 27, 0, sizeof(ItemPointerData),
SelfItemPointerAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
};
static FormData_pg_attribute a2 = {
- 0xffffffff, {"oid"}, 26l, 0l, sizeof(Oid),
+ 0xffffffff, {"oid"}, 26, 0, sizeof(Oid),
ObjectIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
};
static FormData_pg_attribute a3 = {
- 0xffffffff, {"xmin"}, 28l, 0l, sizeof(TransactionId),
+ 0xffffffff, {"xmin"}, 28, 0, sizeof(TransactionId),
MinTransactionIdAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
};
static FormData_pg_attribute a4 = {
- 0xffffffff, {"cmin"}, 29l, 0l, sizeof(CommandId),
+ 0xffffffff, {"cmin"}, 29, 0, sizeof(CommandId),
MinCommandIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
};
static FormData_pg_attribute a5 = {
- 0xffffffff, {"xmax"}, 28l, 0l, sizeof(TransactionId),
+ 0xffffffff, {"xmax"}, 28, 0, sizeof(TransactionId),
MaxTransactionIdAttributeNumber, 0, -1, -1, '\0', '\0', 'i', '\0', '\0'
};
static FormData_pg_attribute a6 = {
- 0xffffffff, {"cmax"}, 29l, 0l, sizeof(CommandId),
+ 0xffffffff, {"cmax"}, 29, 0, sizeof(CommandId),
MaxCommandIdAttributeNumber, 0, -1, -1, '\001', '\0', 'i', '\0', '\0'
};