mirror of
https://github.com/postgres/postgres.git
synced 2026-02-23 18:04:41 -05:00
22 lines
538 B
C
22 lines
538 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* 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 */
|