mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
|
30 years ago
|
/*-------------------------------------------------------------------------
|
||
|
|
*
|
||
|
|
* sets.h--
|
||
|
|
*
|
||
|
|
*
|
||
|
|
*
|
||
|
|
* Copyright (c) 1994, Regents of the University of California
|
||
|
|
*
|
||
|
|
* $Id: sets.h,v 1.1 1996/08/28 01:59:25 scrappy 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 */
|