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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_statistic.h
  4.  *   definition of the system "statistic" relation (pg_statistic)
  5.  *   along with the relation's initial contents.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: pg_statistic.h,v 1.6 1999/02/13 23:21:15 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_STATISTIC_H
  19. #define PG_STATISTIC_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_statistic definition.  cpp turns this into
  28.  * typedef struct FormData_pg_statistic
  29.  * ----------------
  30.  */
  31. CATALOG(pg_statistic)
  32. {
  33. Oid starelid;
  34. int2 staattnum;
  35. Oid staop;
  36. text stalokey; /* VARIABLE LENGTH FIELD */
  37. text stahikey; /* VARIABLE LENGTH FIELD */
  38. } FormData_pg_statistic;
  39. /* ----------------
  40.  * Form_pg_statistic corresponds to a pointer to a tuple with
  41.  * the format of pg_statistic relation.
  42.  * ----------------
  43.  */
  44. typedef FormData_pg_statistic *Form_pg_statistic;
  45. /* ----------------
  46.  * compiler constants for pg_statistic
  47.  * ----------------
  48.  */
  49. #define Natts_pg_statistic 5
  50. #define Anum_pg_statistic_starelid 1
  51. #define Anum_pg_statistic_staattnum 2
  52. #define Anum_pg_statistic_staop 3
  53. #define Anum_pg_statistic_stalokey 4
  54. #define Anum_pg_statistic_stahikey 5
  55. #endif  /* PG_STATISTIC_H */