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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * pg_language.h
  4.  *   definition of the system "language" relation (pg_language)
  5.  *   along with the relation's initial contents.
  6.  *
  7.  *
  8.  * Copyright (c) 1994, Regents of the University of California
  9.  *
  10.  * $Id: pg_language.h,v 1.8 1999/02/13 23:21:11 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_LANGUAGE_H
  19. #define PG_LANGUAGE_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_language definition.  cpp turns this into
  28.  * typedef struct FormData_pg_language
  29.  * ----------------
  30.  */
  31. CATALOG(pg_language)
  32. {
  33. NameData lanname;
  34. bool lanispl; /* Is a procedural language */
  35. bool lanpltrusted; /* PL is trusted */
  36. Oid lanplcallfoid; /* Call handler for PL */
  37. text lancompiler; /* VARIABLE LENGTH FIELD */
  38. } FormData_pg_language;
  39. /* ----------------
  40.  * Form_pg_language corresponds to a pointer to a tuple with
  41.  * the format of pg_language relation.
  42.  * ----------------
  43.  */
  44. typedef FormData_pg_language *Form_pg_language;
  45. /* ----------------
  46.  * compiler constants for pg_language
  47.  * ----------------
  48.  */
  49. #define Natts_pg_language 5
  50. #define Anum_pg_language_lanname 1
  51. #define Anum_pg_language_lanispl 2
  52. #define Anum_pg_language_lanpltrusted 3
  53. #define Anum_pg_language_lanplcallfoid 4
  54. #define Anum_pg_language_lancompiler 5
  55. /* ----------------
  56.  * initial contents of pg_language
  57.  * ----------------
  58.  */
  59. DATA(insert OID = 11 ( internal f 0 0 "n/a" ));
  60. DESCR("");
  61. #define INTERNALlanguageId 11
  62. DATA(insert OID = 12 ( lisp f 0 0 "/usr/ucb/liszt" ));
  63. DESCR("");
  64. DATA(insert OID = 13 ( "C" f 0 0 "/bin/cc" ));
  65. DESCR("");
  66. #define ClanguageId 13
  67. DATA(insert OID = 14 ( "sql" f 0 0 "postgres"));
  68. DESCR("");
  69. #define SQLlanguageId 14
  70. #endif  /* PG_LANGUAGE_H */