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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_ipl.h
  4.  *   definition of the system "ipl" relation (pg_ipl)
  5.  *   along with the relation's initial contents.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: pg_ipl.h,v 1.6 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_IPL_H
  19. #define PG_IPL_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_ipl definition. cpp turns this into
  28.  * typedef struct FormData_pg_ipl
  29.  * ----------------
  30.  */
  31. CATALOG(pg_ipl)
  32. {
  33. Oid iplrel;
  34. Oid iplipl;
  35. int4 iplseqno;
  36. } FormData_pg_ipl;
  37. /* ----------------
  38.  * Form_pg_ipl corresponds to a pointer to a tuple with
  39.  * the format of pg_ipl relation.
  40.  * ----------------
  41.  */
  42. typedef FormData_pg_ipl *Form_pg_ipl;
  43. /* ----------------
  44.  * compiler constants for pg_ipl
  45.  * ----------------
  46.  */
  47. #define Natts_pg_ipl 3
  48. #define Anum_pg_ipl_iplrel 1
  49. #define Anum_pg_ipl_iplipl 2
  50. #define Anum_pg_ipl_iplseqno 3
  51. #endif  /* PG_IPL_H */