]> granicus.if.org Git - postgresql/blobdiff - src/include/catalog/pg_inherits.h
Update copyright for 2014
[postgresql] / src / include / catalog / pg_inherits.h
index ebe58a34148c3f8b06d0532924e81bd04e46ad67..cda48f25199efcdc0df23110e3236de7ed229eb1 100644 (file)
@@ -5,13 +5,13 @@
  *       along with the relation's initial contents.
  *
  *
- * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $PostgreSQL: pgsql/src/include/catalog/pg_inherits.h,v 1.23 2007/01/05 22:19:52 momjian Exp $
+ * src/include/catalog/pg_inherits.h
  *
  * NOTES
- *       the genbki.sh script reads this file and generates .bki
+ *       the genbki.pl script reads this file and generates .bki
  *       information from the DATA() statements.
  *
  *-------------------------------------------------------------------------
 #ifndef PG_INHERITS_H
 #define PG_INHERITS_H
 
-/* ----------------
- *             postgres.h contains the system type definitions and the
- *             CATALOG(), BKI_BOOTSTRAP and DATA() sugar words so this file
- *             can be read by both genbki.sh and the C compiler.
- * ----------------
- */
+#include "catalog/genbki.h"
 
 /* ----------------
  *             pg_inherits definition.  cpp turns this into
@@ -37,7 +32,7 @@ CATALOG(pg_inherits,2611) BKI_WITHOUT_OIDS
 {
        Oid                     inhrelid;
        Oid                     inhparent;
-       int           inhseqno;
+       int32           inhseqno;
 } FormData_pg_inherits;
 
 /* ----------------
@@ -56,4 +51,9 @@ typedef FormData_pg_inherits *Form_pg_inherits;
 #define Anum_pg_inherits_inhparent             2
 #define Anum_pg_inherits_inhseqno              3
 
+/* ----------------
+ *             pg_inherits has no initial contents
+ * ----------------
+ */
+
 #endif   /* PG_INHERITS_H */