pg_inherits.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_inherits.h
  4.  *   definition of the system "inherits" relation (pg_inherits)
  5.  *   along with the relation's initial contents.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: pg_inherits.h,v 1.7 1999/02/13 23:21:10 momjian Exp $
  11.  *
  12.  * NOTES
  13.  *   the genbki.sh script reads this file and generates .bki
  14.  *   information from the DATA() statements.
  15.  *
  16.  *-------------------------------------------------------------------------
  17.  */
  18. #ifndef PG_INHERITS_H
  19. #define PG_INHERITS_H
  20. /* ----------------
  21.  * postgres.h contains the system type definintions and the
  22.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  23.  * can be read by both genbki.sh and the C compiler.
  24.  * ----------------
  25.  */
  26. /* ----------------
  27.  * pg_inherits definition.  cpp turns this into
  28.  * typedef struct FormData_pg_inherits
  29.  * ----------------
  30.  */
  31. CATALOG(pg_inherits)
  32. {
  33. Oid inhrel;
  34. Oid inhparent;
  35. int4 inhseqno;
  36. } FormData_pg_inherits;
  37. /* ----------------
  38.  * Form_pg_inherits corresponds to a pointer to a tuple with
  39.  * the format of pg_inherits relation.
  40.  * ----------------
  41.  */
  42. typedef FormData_pg_inherits *Form_pg_inherits;
  43. /* ----------------
  44.  * compiler constants for pg_inherits
  45.  * ----------------
  46.  */
  47. #define Natts_pg_inherits 3
  48. #define Anum_pg_inherits_inhrel 1
  49. #define Anum_pg_inherits_inhparent 2
  50. #define Anum_pg_inherits_inhseqno 3
  51. #endif  /* PG_INHERITS_H */