diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-24 03:29:15 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-08-24 03:29:15 +0000 |
| commit | 782c16c6a154e760bf1608d633488538cd52da93 (patch) | |
| tree | 902da787593da21a979bd2f74b0b44acf9c427b0 /src/include/utils/sets.h | |
| parent | 87523ab8db34859ae3fb980a3fab9f29dfc4c97a (diff) | |
| download | postgresql-782c16c6a154e760bf1608d633488538cd52da93.tar.gz | |
SQL-language functions are now callable in ordinary fmgr contexts ...
for example, an SQL function can be used in a functional index. (I make
no promises about speed, but it'll work ;-).) Clean up and simplify
handling of functions returning sets.
Diffstat (limited to 'src/include/utils/sets.h')
| -rw-r--r-- | src/include/utils/sets.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/utils/sets.h b/src/include/utils/sets.h index a7b5d6826e..7f284ac346 100644 --- a/src/include/utils/sets.h +++ b/src/include/utils/sets.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: sets.h,v 1.7 2000/06/09 01:11:15 tgl Exp $ + * $Id: sets.h,v 1.8 2000/08/24 03:29:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,10 +17,11 @@ #include "fmgr.h" -/* Temporary name of set, before SetDefine changes it. */ -#define GENERICSETNAME "zyxset" +/* Temporary name of a set function, before SetDefine changes it. */ +#define GENERICSETNAME "ZYX#Set#ZYX" extern Oid SetDefine(char *querystr, char *typename); + extern Datum seteval(PG_FUNCTION_ARGS); #endif /* SETS_H */ |
