aboutsummaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_version.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/catalog/pg_version.h')
-rw-r--r--src/include/catalog/pg_version.h49
1 files changed, 25 insertions, 24 deletions
diff --git a/src/include/catalog/pg_version.h b/src/include/catalog/pg_version.h
index 4602199466d..ba1249ab04e 100644
--- a/src/include/catalog/pg_version.h
+++ b/src/include/catalog/pg_version.h
@@ -1,17 +1,17 @@
/*-------------------------------------------------------------------------
*
* pg_version.h--
- * definition of the system "version" relation (pg_version)
- * along with the relation's initial contents.
+ * definition of the system "version" relation (pg_version)
+ * along with the relation's initial contents.
*
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_version.h,v 1.3 1996/11/06 10:29:23 scrappy Exp $
+ * $Id: pg_version.h,v 1.4 1997/09/07 04:57:17 momjian Exp $
*
* NOTES
- * the genbki.sh script reads this file and generates .bki
- * information from the DATA() statements.
+ * the genbki.sh script reads this file and generates .bki
+ * information from the DATA() statements.
*
*-------------------------------------------------------------------------
*/
@@ -19,38 +19,39 @@
#define PG_VERSION_H
/* ----------------
- * postgres.h contains the system type definintions and the
- * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
- * can be read by both genbki.sh and the C compiler.
+ * postgres.h contains the system type definintions and the
+ * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
+ * can be read by both genbki.sh and the C compiler.
* ----------------
*/
/* ----------------
- * pg_version definition. cpp turns this into
- * typedef struct FormData_pg_version
+ * pg_version definition. cpp turns this into
+ * typedef struct FormData_pg_version
* ----------------
- */
-CATALOG(pg_version) {
- Oid verrelid;
- Oid verbaseid;
- int4 vertime; /* really should be some abstime */
+ */
+CATALOG(pg_version)
+{
+ Oid verrelid;
+ Oid verbaseid;
+ int4 vertime; /* really should be some abstime */
} FormData_pg_version;
/* ----------------
- * Form_pg_version corresponds to a pointer to a tuple with
- * the format of pg_version relation.
+ * Form_pg_version corresponds to a pointer to a tuple with
+ * the format of pg_version relation.
* ----------------
*/
-typedef FormData_pg_version *VersionTupleForm;
+typedef FormData_pg_version *VersionTupleForm;
/* ----------------
- * compiler constants for pg_version
+ * compiler constants for pg_version
* ----------------
*/
-#define Natts_pg_version 3
-#define Anum_pg_version_verrelid 1
-#define Anum_pg_version_verbaseid 2
-#define Anum_pg_version_vertime 3
+#define Natts_pg_version 3
+#define Anum_pg_version_verrelid 1
+#define Anum_pg_version_verbaseid 2
+#define Anum_pg_version_vertime 3
-#endif /* PG_VERSION_H */
+#endif /* PG_VERSION_H */