X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;ds=sidebyside;f=src%2Finclude%2Fcatalog%2Fpg_inherits.h;h=cda48f25199efcdc0df23110e3236de7ed229eb1;hb=7e04792a1cbd1763edf72474f6b1fbad2cd0ad31;hp=ebe58a34148c3f8b06d0532924e81bd04e46ad67;hpb=29dccf5fe0e98af9ce023299c4fe9776a52fd23d;p=postgresql diff --git a/src/include/catalog/pg_inherits.h b/src/include/catalog/pg_inherits.h index ebe58a3414..cda48f2519 100644 --- a/src/include/catalog/pg_inherits.h +++ b/src/include/catalog/pg_inherits.h @@ -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. * *------------------------------------------------------------------------- @@ -19,12 +19,7 @@ #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; - int4 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 */