]> granicus.if.org Git - postgresql/blob - src/include/executor/functions.h
Arrange to "inline" SQL functions that appear in a query's FROM clause,
[postgresql] / src / include / executor / functions.h
1 /*-------------------------------------------------------------------------
2  *
3  * functions.h
4  *              Declarations for execution of SQL-language functions.
5  *
6  *
7  * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/executor/functions.h,v 1.31 2008/03/18 22:04:14 tgl Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef FUNCTIONS_H
15 #define FUNCTIONS_H
16
17 #include "nodes/execnodes.h"
18
19
20 extern Datum fmgr_sql(PG_FUNCTION_ARGS);
21
22 extern bool check_sql_fn_retval(Oid func_id, Oid rettype,
23                                         List *queryTreeList,
24                                         bool insertRelabels,
25                                         JunkFilter **junkFilter);
26
27 #endif   /* FUNCTIONS_H */