mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Implement an API to let foreign-data wrappers actually be functional.
This commit provides the core code and documentation needed. A contrib module test case will follow shortly. Shigeru Hanada, Jan Urbanski, Heikki Linnakangas
This commit is contained in:
@@ -488,6 +488,7 @@ extern Datum FunctionCall9(FmgrInfo *flinfo, Datum arg1, Datum arg2,
|
||||
* by FunctionCallN(). If the same function is to be invoked repeatedly,
|
||||
* do the FunctionLookup() once and then use FunctionCallN().
|
||||
*/
|
||||
extern Datum OidFunctionCall0(Oid functionId);
|
||||
extern Datum OidFunctionCall1(Oid functionId, Datum arg1);
|
||||
extern Datum OidFunctionCall2(Oid functionId, Datum arg1, Datum arg2);
|
||||
extern Datum OidFunctionCall3(Oid functionId, Datum arg1, Datum arg2,
|
||||
|
Reference in New Issue
Block a user