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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_shadow.h
  4.  *   definition of the system "shadow" relation (pg_shadow)
  5.  *   along with the relation's initial contents.
  6.  *   pg_user is now a public accessible view on pg_shadow.
  7.  *
  8.  *
  9.  * Copyright (c) 1994, Regents of the University of California
  10.  *
  11.  * $Id: pg_shadow.h,v 1.4 1999/02/13 23:21:14 momjian Exp $
  12.  *
  13.  * NOTES
  14.  *   the genbki.sh script reads this file and generates .bki
  15.  *   information from the DATA() statements.
  16.  *
  17.  *   WHENEVER the definition for pg_shadow changes, the
  18.  *   view creation of pg_user must be changed in initdb.sh!
  19.  *
  20.  *-------------------------------------------------------------------------
  21.  */
  22. #ifndef PG_SHADOW_H
  23. #define PG_SHADOW_H
  24. /* Prototype required for superuser() from superuser.c */
  25. bool superuser(void);
  26. /* ----------------
  27.  * pg_shadow definition.  cpp turns this into
  28.  * typedef struct FormData_pg_shadow
  29.  * ----------------
  30.  */
  31. CATALOG(pg_shadow) BOOTSTRAP
  32. {
  33. NameData usename;
  34. int4 usesysid;
  35. bool usecreatedb;
  36. bool usetrace;
  37. bool usesuper;
  38. bool usecatupd;
  39. text passwd;
  40. int4 valuntil;
  41. } FormData_pg_shadow;
  42. /* ----------------
  43.  * Form_pg_shadow corresponds to a pointer to a tuple with
  44.  * the format of pg_shadow relation.
  45.  * ----------------
  46.  */
  47. typedef FormData_pg_shadow *Form_pg_shadow;
  48. /* ----------------
  49.  * compiler constants for pg_shadow
  50.  * ----------------
  51.  */
  52. #define Natts_pg_shadow 8
  53. #define Anum_pg_shadow_usename 1
  54. #define Anum_pg_shadow_usesysid 2
  55. #define Anum_pg_shadow_usecreatedb 3
  56. #define Anum_pg_shadow_usetrace 4
  57. #define Anum_pg_shadow_usesuper 5
  58. #define Anum_pg_shadow_usecatupd 6
  59. #define Anum_pg_shadow_passwd 7
  60. #define Anum_pg_shadow_valuntil 8
  61. /* ----------------
  62.  * initial contents of pg_shadow
  63.  * ----------------
  64.  */
  65. DATA(insert OID = 0 ( postgres PGUID t t t t _null_ 2116994400 ));
  66. BKI_BEGIN
  67. #ifdef ALLOW_PG_GROUP
  68. BKI_END
  69. DATA(insert OID = 0 ( mike 799 t t t t _null_ 2116994400 ));
  70. DATA(insert OID = 0 ( mao 1806 t t t t _null_ 2116994400 ));
  71. DATA(insert OID = 0 ( hellers 1089 t t t t _null_ 2116994400 ));
  72. DATA(insert OID = 0 ( joey 5209 t t t t _null_ 2116994400 ));
  73. DATA(insert OID = 0 ( jolly 5443 t t t t _null_ 2116994400 ));
  74. DATA(insert OID = 0 ( sunita 6559 t t t t _null_ 2116994400 ));
  75. DATA(insert OID = 0 ( paxson 3029 t t t t _null_ 2116994400 ));
  76. DATA(insert OID = 0 ( marc 2435 t t t t _null_ 2116994400 ));
  77. DATA(insert OID = 0 ( jiangwu 6124 t t t t _null_ 2116994400 ));
  78. DATA(insert OID = 0 ( aoki 2360 t t t t _null_ 2116994400 ));
  79. DATA(insert OID = 0 ( avi 31080 t t t t _null_ 2116994400 ));
  80. DATA(insert OID = 0 ( kristin 1123 t t t t _null_ 2116994400 ));
  81. DATA(insert OID = 0 ( andrew 5229 t t t t _null_ 2116994400 ));
  82. DATA(insert OID = 0 ( nobuko 5493 t t t t _null_ 2116994400 ));
  83. DATA(insert OID = 0 ( hartzell 6676 t t t t _null_ 2116994400 ));
  84. DATA(insert OID = 0 ( devine 6724 t t t t _null_ 2116994400 ));
  85. DATA(insert OID = 0 ( boris 6396 t t t t _null_ 2116994400 ));
  86. DATA(insert OID = 0 ( sklower 354 t t t t _null_ 2116994400 ));
  87. DATA(insert OID = 0 ( marcel 31113 t t t t _null_ 2116994400 ));
  88. DATA(insert OID = 0 ( ginger 3692 t t t t _null_ 2116994400 ));
  89. DATA(insert OID = 0 ( woodruff 31026 t t t t _null_ 2116994400 ));
  90. DATA(insert OID = 0 ( searcher 8261 t t t t _null_ 2116994400 ));
  91. BKI_BEGIN
  92. #endif  /* ALLOW_PG_GROUP */
  93. BKI_END
  94. #endif  /* PG_SHADOW_H */