mirror of
https://github.com/postgres/postgres.git
synced 2025-07-11 10:01:57 +03:00
Code review for standalone composite types, query-specified composite
types, SRFs. Not happy with memory management yet, but I'll commit these other changes.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: execnodes.h,v 1.71 2002/08/04 19:48:10 momjian Exp $
|
||||
* $Id: execnodes.h,v 1.72 2002/08/29 00:17:06 tgl Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -509,17 +509,13 @@ typedef struct SubqueryScanState
|
||||
* Function nodes are used to scan the results of a
|
||||
* function appearing in FROM (typically a function returning set).
|
||||
*
|
||||
* functionmode function operating mode:
|
||||
* - repeated call
|
||||
* - materialize
|
||||
* - return query
|
||||
* functionmode function operating mode
|
||||
* tupdesc function's return tuple description
|
||||
* tuplestorestate private state of tuplestore.c
|
||||
* funcexpr function expression being evaluated
|
||||
* returnsTuple does function return tuples?
|
||||
* fn_typeid OID of function return type
|
||||
* fn_typtype return Datum type, i.e. 'b'ase,
|
||||
* 'c'atalog, or 'p'seudo
|
||||
* fn_typtype return type's typtype
|
||||
* ----------------
|
||||
*/
|
||||
typedef enum FunctionMode
|
||||
|
Reference in New Issue
Block a user