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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * functions.h
  4.  *
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: functions.h,v 1.9 1999/02/13 23:21:24 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef FUNCTIONS_H
  14. #define FUNCTIONS_H
  15. #include "access/tupdesc.h"
  16. #include "nodes/parsenodes.h"
  17. #include "nodes/primnodes.h"
  18. #include "utils/syscache.h"
  19. extern Datum ProjectAttribute(TupleDesc TD, TargetEntry *tlist,
  20.  HeapTuple tup, bool *isnullP);
  21. extern Datum postquel_function(Func *funcNode, char **args,
  22.   bool *isNull, bool *isDone);
  23. #endif  /* FUNCTIONS_H */