home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / lib / H / tcop / tcop.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  1.8 KB  |  75 lines

  1. /* ----------------------------------------------------------------
  2.  *   FILE
  3.  *    tcop.h
  4.  *    
  5.  *   DESCRIPTION
  6.  *    header information for the traffic cop module
  7.  *
  8.  *   NOTES
  9.  *    We should reorginize the .h files better.
  10.  *
  11.  *   IDENTIFICATION
  12.  *    $Header: /private/postgres/src/lib/H/tcop/RCS/tcop.h,v 1.8 1991/11/06 04:31:50 mer Exp $
  13.  * ----------------------------------------------------------------
  14.  */
  15.  
  16. #ifndef TcopIncluded
  17. #define TcopIncluded
  18.  
  19. /* ----------------------------------------------------------------
  20.  *     #includes
  21.  * ----------------------------------------------------------------
  22.  */
  23. #include <signal.h>
  24. #include <stdio.h>
  25. #include <sys/file.h>
  26. #include <sys/types.h>
  27. #include <strings.h>
  28. #include <ctype.h>
  29.  
  30. #include "tmp/postgres.h"
  31.  
  32. #include "access/attnum.h"
  33. #include "access/ftup.h"
  34. #include "access/heapam.h"
  35. #include "access/htup.h"
  36. #include "access/sdir.h"
  37. #include "access/tupdesc.h"
  38. #include "access/xcxt.h"
  39.  
  40. #include "catalog/catname.h"
  41. #include "catalog/syscache.h"
  42. #include "commands/command.h"
  43. #include "commands/defrem.h"
  44. #include "executor/execdefs.h"
  45. #include "nodes/pg_lisp.h"
  46. #include "parser/parse.h"
  47. #include "rules/params.h"
  48. #include "rules/prs2.h"
  49. #include "storage/buf.h"
  50. #include "tmp/miscadmin.h"
  51. #include "tmp/portal.h"
  52. #include "utils/exc.h"
  53. #include "utils/fmgr.h"
  54. #include "utils/log.h"
  55. #include "utils/memutils.h"
  56. #include "utils/palloc.h"
  57. #include "utils/rel.h"
  58.  
  59. #include "catalog/pg_type.h"
  60. #include "catalog/pg_inherits.h"
  61. #include "catalog/pg_ipl.h"
  62.  
  63. #include "tcop/tcopdebug.h"
  64. #include "tcop/tcopprot.h"
  65. #include "executor/execdebug.h"
  66.  
  67. #include "tcop/creatinh.h"
  68.  
  69. /* ----------------------------------------------------------------
  70.  *    the end
  71.  * ----------------------------------------------------------------
  72.  */
  73.  
  74. #endif  TcopIncluded
  75.