mirror of
https://github.com/postgres/postgres.git
synced 2026-02-13 15:53:13 -05:00
27 lines
659 B
C
27 lines
659 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* sets.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: sets.h,v 1.14 2002/06/20 20:29:53 momjian 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 */
|