~ubuntu-branches/ubuntu/hardy/postgresql-8.4/hardy-backports

« back to all changes in this revision

Viewing changes to src/include/executor/functions.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-03-20 12:00:13 UTC
  • Revision ID: james.westby@ubuntu.com-20090320120013-hogj7egc5mjncc5g
Tags: upstream-8.4~0cvs20090328
ImportĀ upstreamĀ versionĀ 8.4~0cvs20090328

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * functions.h
 
4
 *              Declarations for execution of SQL-language functions.
 
5
 *
 
6
 *
 
7
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
 
8
 * Portions Copyright (c) 1994, Regents of the University of California
 
9
 *
 
10
 * $PostgreSQL$
 
11
 *
 
12
 *-------------------------------------------------------------------------
 
13
 */
 
14
#ifndef FUNCTIONS_H
 
15
#define FUNCTIONS_H
 
16
 
 
17
#include "nodes/execnodes.h"
 
18
#include "tcop/dest.h"
 
19
 
 
20
 
 
21
extern Datum fmgr_sql(PG_FUNCTION_ARGS);
 
22
 
 
23
extern bool check_sql_fn_retval(Oid func_id, Oid rettype,
 
24
                                        List *queryTreeList,
 
25
                                        bool insertRelabels,
 
26
                                        JunkFilter **junkFilter);
 
27
 
 
28
extern DestReceiver *CreateSQLFunctionDestReceiver(void);
 
29
 
 
30
#endif   /* FUNCTIONS_H */