mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-13 01:47:05 +08:00
23 lines
533 B
C
23 lines
533 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* sets.h
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: sets.h,v 1.5 1999/02/13 23:22:31 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 */
|