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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_variable.h
  4.  *   the system variable relation "pg_variable" is not a "heap" relation.
  5.  *   it is automatically created by the transam/ code and the
  6.  *   information here is all bogus and is just here to make the
  7.  *   relcache code happy.
  8.  *
  9.  *
  10.  * Copyright (c) 1994, Regents of the University of California
  11.  *
  12.  * $Id: pg_variable.h,v 1.6 1999/02/13 23:21:15 momjian Exp $
  13.  *
  14.  * NOTES
  15.  *   The structures and macros used by the transam/ code
  16.  *   to access pg_variable should someday go here -cim 6/18/90
  17.  *
  18.  *-------------------------------------------------------------------------
  19.  */
  20. #ifndef PG_VARIABLE_H
  21. #define PG_VARIABLE_H
  22. /* ----------------
  23.  * postgres.h contains the system type definintions and the
  24.  * CATALOG(), BOOTSTRAP and DATA() sugar words so this file
  25.  * can be read by both genbki.sh and the C compiler.
  26.  * ----------------
  27.  */
  28. CATALOG(pg_variable) BOOTSTRAP
  29. {
  30. Oid varfoo;
  31. } FormData_pg_variable;
  32. typedef FormData_pg_variable *Form_pg_variable;
  33. #define Natts_pg_variable 1
  34. #define Anum_pg_variable_varfoo 1
  35. #endif  /* PG_VARIABLE_H */