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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * defrem.h
  4.  *   POSTGRES define and remove utility definitions.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: defrem.h,v 1.15.2.1 1999/07/30 18:52:56 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef DEFREM_H
  14. #define DEFREM_H
  15. #include "nodes/parsenodes.h"
  16. #include "tcop/dest.h"
  17. /*
  18.  * prototypes in defind.c
  19.  */
  20. extern void DefineIndex(char *heapRelationName,
  21. char *indexRelationName,
  22. char *accessMethodName,
  23. List *attributeList,
  24. List *parameterList,
  25. bool unique,
  26. bool primary,
  27. Expr *predicate,
  28. List *rangetable);
  29. extern void ExtendIndex(char *indexRelationName,
  30. Expr *predicate,
  31. List *rangetable);
  32. extern void RemoveIndex(char *name);
  33. /*
  34.  * prototypes in define.c
  35.  */
  36. extern void CreateFunction(ProcedureStmt *stmt, CommandDest dest);
  37. extern void DefineOperator(char *name, List *parameters);
  38. extern void DefineAggregate(char *name, List *parameters);
  39. extern void DefineType(char *name, List *parameters);
  40. extern void CreateFunction(ProcedureStmt *stmt, CommandDest dest);
  41. /*
  42.  * prototypes in remove.c
  43.  */
  44. extern void RemoveFunction(char *functionName, int nargs, List *argNameList);
  45. extern void RemoveOperator(char *operatorName,
  46.    char *typeName1, char *typeName2);
  47. extern void RemoveType(char *typeName);
  48. extern void RemoveAggregate(char *aggName, char *aggType);
  49. #endif  /* DEFREM_H */