mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 01:40:33 -05:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
23 lines
595 B
C
23 lines
595 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* sets.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: sets.h,v 1.6 2000/01/26 05:58:38 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef SETS_H
|
|
#define SETS_H
|
|
|
|
/* Temporary name of set, before SetDefine changes it. */
|
|
#define GENERICSETNAME "zyxset"
|
|
|
|
extern Oid SetDefine(char *querystr, char *typename);
|
|
extern int seteval(Oid funcoid);
|
|
|
|
#endif /* SETS_H */
|