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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_group.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: pg_group.h,v 1.6 1999/02/13 23:21:09 momjian Exp $
  10.  *
  11.  * NOTES
  12.  *   the genbki.sh script reads this file and generates .bki
  13.  *   information from the DATA() statements.
  14.  *
  15.  *-------------------------------------------------------------------------
  16.  */
  17. #ifndef PG_GROUP_H
  18. #define PG_GROUP_H
  19. /* ----------------
  20.  * postgres.h contains the system type definintions and the
  21.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  22.  * can be read by both genbki.sh and the C compiler.
  23.  * ----------------
  24.  */
  25. CATALOG(pg_group) BOOTSTRAP
  26. {
  27. NameData groname;
  28. int4 grosysid;
  29. int4 grolist[1];
  30. } FormData_pg_group;
  31. /* VARIABLE LENGTH STRUCTURE */
  32. typedef FormData_pg_group *Form_pg_group;
  33. #define Natts_pg_group 1
  34. #define Anum_pg_group_groname 1
  35. #define Anum_pg_group_grosysid 2
  36. #define Anum_pg_group_grolist 3
  37. #endif  /* PG_GROUP_H */