mirror of
https://github.com/postgres/postgres.git
synced 2026-02-03 20:40:14 -05:00
key call sites are changed, but most called functions are still oldstyle. An exception is that the PL managers are updated (so, for example, NULL handling now behaves as expected in plperl and plpgsql functions). NOTE initdb is forced due to added column in pg_proc.
28 lines
747 B
C
28 lines
747 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* functions.h
|
|
*
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: functions.h,v 1.12 2000/05/28 17:56:18 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef FUNCTIONS_H
|
|
#define FUNCTIONS_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
#include "utils/syscache.h"
|
|
|
|
extern Datum ProjectAttribute(TupleDesc TD, TargetEntry *tlist,
|
|
HeapTuple tup, bool *isnullP);
|
|
|
|
extern Datum postquel_function(FunctionCallInfo fcinfo,
|
|
FunctionCachePtr fcache,
|
|
List *func_tlist,
|
|
bool *isDone);
|
|
|
|
#endif /* FUNCTIONS_H */
|