/*------------------------------------------------------------------------- * * sets.h * * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * $PostgreSQL: pgsql/src/include/utils/sets.h,v 1.16 2003/11/29 22:41:16 pgsql Exp $ * *------------------------------------------------------------------------- */ #ifndef SETS_H #define SETS_H #include "fmgr.h" /* Temporary name of a set function, before SetDefine changes it. */ #define GENERICSETNAME "ZYX#Set#ZYX" extern Oid SetDefine(char *querystr, Oid elemType); extern Datum seteval(PG_FUNCTION_ARGS); #endif /* SETS_H */