| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #ifndef FMGR_H |
| | #define FMGR_H |
| |
|
| | |
| | typedef struct Node *fmNodePtr; |
| | typedef struct Aggref *fmAggrefPtr; |
| |
|
| | |
| | typedef void (*fmExprContextCallbackFunction) (Datum arg); |
| |
|
| | |
| | typedef struct StringInfoData *fmStringInfo; |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| |
|
| | typedef struct FunctionCallInfoBaseData *FunctionCallInfo; |
| |
|
| | typedef Datum (*PGFunction) (FunctionCallInfo fcinfo); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | typedef struct FmgrInfo |
| | { |
| | PGFunction fn_addr; |
| | Oid fn_oid; |
| | short fn_nargs; |
| | bool fn_strict; |
| | bool fn_retset; |
| | unsigned char fn_stats; |
| | void *fn_extra; |
| | MemoryContext fn_mcxt; |
| | fmNodePtr fn_expr; |
| | } FmgrInfo; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | typedef struct FunctionCallInfoBaseData |
| | { |
| | FmgrInfo *flinfo; |
| | fmNodePtr context; |
| | fmNodePtr resultinfo; |
| | Oid fncollation; |
| | #define FIELDNO_FUNCTIONCALLINFODATA_ISNULL 4 |
| | bool isnull; |
| | short nargs; |
| | #define FIELDNO_FUNCTIONCALLINFODATA_ARGS 6 |
| | NullableDatum args[FLEXIBLE_ARRAY_MEMBER]; |
| | } FunctionCallInfoBaseData; |
| |
|
| | |
| | |
| | |
| | |
| | #define SizeForFunctionCallInfo(nargs) \ |
| | (offsetof(FunctionCallInfoBaseData, args) + \ |
| | sizeof(NullableDatum) * (nargs)) |
| |
|
| | |
| | |
| | |
| | |
| | #define LOCAL_FCINFO(name, nargs) \ |
| | \ |
| | union \ |
| | { \ |
| | FunctionCallInfoBaseData fcinfo; \ |
| | \ |
| | char fcinfo_data[SizeForFunctionCallInfo(nargs)]; \ |
| | } name##data; \ |
| | FunctionCallInfo name = &name##data.fcinfo |
| |
|
| | |
| | |
| | |
| | |
| | extern void fmgr_info(Oid functionId, FmgrInfo *finfo); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | extern void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, |
| | MemoryContext mcxt); |
| |
|
| | |
| | #define fmgr_info_set_expr(expr, finfo) \ |
| | ((finfo)->fn_expr = (expr)) |
| |
|
| | |
| | |
| | |
| | extern void fmgr_info_copy(FmgrInfo *dstinfo, FmgrInfo *srcinfo, |
| | MemoryContext destcxt); |
| |
|
| | extern void fmgr_symbol(Oid functionId, char **mod, char **fn); |
| |
|
| | |
| | |
| | |
| | |
| | #define InitFunctionCallInfoData(Fcinfo, Flinfo, Nargs, Collation, Context, Resultinfo) \ |
| | do { \ |
| | (Fcinfo).flinfo = (Flinfo); \ |
| | (Fcinfo).context = (Context); \ |
| | (Fcinfo).resultinfo = (Resultinfo); \ |
| | (Fcinfo).fncollation = (Collation); \ |
| | (Fcinfo).isnull = false; \ |
| | (Fcinfo).nargs = (Nargs); \ |
| | } while (0) |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #define FunctionCallInvoke(fcinfo) ((* (fcinfo)->flinfo->fn_addr) (fcinfo)) |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | #define PG_FUNCTION_ARGS FunctionCallInfo fcinfo |
| |
|
| | |
| | |
| | |
| | #define PG_GET_COLLATION() (fcinfo->fncollation) |
| |
|
| | |
| | |
| | |
| | #define PG_NARGS() (fcinfo->nargs) |
| |
|
| | |
| | |
| | |
| | |
| | #define PG_ARGISNULL(n) (fcinfo->args[n].isnull) |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | extern struct varlena *pg_detoast_datum(struct varlena *datum); |
| | extern struct varlena *pg_detoast_datum_copy(struct varlena *datum); |
| | extern struct varlena *pg_detoast_datum_slice(struct varlena *datum, |
| | int32 first, int32 count); |
| | extern struct varlena *pg_detoast_datum_packed(struct varlena *datum); |
| |
|
| | #define PG_DETOAST_DATUM(datum) \ |
| | pg_detoast_datum((struct varlena *) DatumGetPointer(datum)) |
| | #define PG_DETOAST_DATUM_COPY(datum) \ |
| | pg_detoast_datum_copy((struct varlena *) DatumGetPointer(datum)) |
| | #define PG_DETOAST_DATUM_SLICE(datum,f,c) \ |
| | pg_detoast_datum_slice((struct varlena *) DatumGetPointer(datum), \ |
| | (int32) (f), (int32) (c)) |
| | |
| | #define PG_DETOAST_DATUM_PACKED(datum) \ |
| | pg_detoast_datum_packed((struct varlena *) DatumGetPointer(datum)) |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #define PG_FREE_IF_COPY(ptr,n) \ |
| | do { \ |
| | if ((Pointer) (ptr) != PG_GETARG_POINTER(n)) \ |
| | pfree(ptr); \ |
| | } while (0) |
| |
|
| | |
| |
|
| | #define PG_GETARG_DATUM(n) (fcinfo->args[n].value) |
| | #define PG_GETARG_INT32(n) DatumGetInt32(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_UINT32(n) DatumGetUInt32(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_INT16(n) DatumGetInt16(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_UINT16(n) DatumGetUInt16(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_CHAR(n) DatumGetChar(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_BOOL(n) DatumGetBool(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_OID(n) DatumGetObjectId(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_POINTER(n) DatumGetPointer(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_CSTRING(n) DatumGetCString(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_NAME(n) DatumGetName(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_TRANSACTIONID(n) DatumGetTransactionId(PG_GETARG_DATUM(n)) |
| | |
| | #define PG_GETARG_FLOAT4(n) DatumGetFloat4(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_FLOAT8(n) DatumGetFloat8(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_INT64(n) DatumGetInt64(PG_GETARG_DATUM(n)) |
| | |
| | #define PG_GETARG_RAW_VARLENA_P(n) ((struct varlena *) PG_GETARG_POINTER(n)) |
| | |
| | #define PG_GETARG_VARLENA_P(n) PG_DETOAST_DATUM(PG_GETARG_DATUM(n)) |
| | |
| | #define PG_GETARG_VARLENA_PP(n) PG_DETOAST_DATUM_PACKED(PG_GETARG_DATUM(n)) |
| | |
| | #define DatumGetByteaPP(X) ((bytea *) PG_DETOAST_DATUM_PACKED(X)) |
| | #define DatumGetTextPP(X) ((text *) PG_DETOAST_DATUM_PACKED(X)) |
| | #define DatumGetBpCharPP(X) ((BpChar *) PG_DETOAST_DATUM_PACKED(X)) |
| | #define DatumGetVarCharPP(X) ((VarChar *) PG_DETOAST_DATUM_PACKED(X)) |
| | #define DatumGetHeapTupleHeader(X) ((HeapTupleHeader) PG_DETOAST_DATUM(X)) |
| | |
| | #define DatumGetByteaPCopy(X) ((bytea *) PG_DETOAST_DATUM_COPY(X)) |
| | #define DatumGetTextPCopy(X) ((text *) PG_DETOAST_DATUM_COPY(X)) |
| | #define DatumGetBpCharPCopy(X) ((BpChar *) PG_DETOAST_DATUM_COPY(X)) |
| | #define DatumGetVarCharPCopy(X) ((VarChar *) PG_DETOAST_DATUM_COPY(X)) |
| | #define DatumGetHeapTupleHeaderCopy(X) ((HeapTupleHeader) PG_DETOAST_DATUM_COPY(X)) |
| | |
| | #define DatumGetByteaPSlice(X,m,n) ((bytea *) PG_DETOAST_DATUM_SLICE(X,m,n)) |
| | #define DatumGetTextPSlice(X,m,n) ((text *) PG_DETOAST_DATUM_SLICE(X,m,n)) |
| | #define DatumGetBpCharPSlice(X,m,n) ((BpChar *) PG_DETOAST_DATUM_SLICE(X,m,n)) |
| | #define DatumGetVarCharPSlice(X,m,n) ((VarChar *) PG_DETOAST_DATUM_SLICE(X,m,n)) |
| | |
| | #define PG_GETARG_BYTEA_PP(n) DatumGetByteaPP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_TEXT_PP(n) DatumGetTextPP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_BPCHAR_PP(n) DatumGetBpCharPP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_VARCHAR_PP(n) DatumGetVarCharPP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_HEAPTUPLEHEADER(n) DatumGetHeapTupleHeader(PG_GETARG_DATUM(n)) |
| | |
| | #define PG_GETARG_BYTEA_P_COPY(n) DatumGetByteaPCopy(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_TEXT_P_COPY(n) DatumGetTextPCopy(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_BPCHAR_P_COPY(n) DatumGetBpCharPCopy(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_VARCHAR_P_COPY(n) DatumGetVarCharPCopy(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_HEAPTUPLEHEADER_COPY(n) DatumGetHeapTupleHeaderCopy(PG_GETARG_DATUM(n)) |
| | |
| | #define PG_GETARG_BYTEA_P_SLICE(n,a,b) DatumGetByteaPSlice(PG_GETARG_DATUM(n),a,b) |
| | #define PG_GETARG_TEXT_P_SLICE(n,a,b) DatumGetTextPSlice(PG_GETARG_DATUM(n),a,b) |
| | #define PG_GETARG_BPCHAR_P_SLICE(n,a,b) DatumGetBpCharPSlice(PG_GETARG_DATUM(n),a,b) |
| | #define PG_GETARG_VARCHAR_P_SLICE(n,a,b) DatumGetVarCharPSlice(PG_GETARG_DATUM(n),a,b) |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #define DatumGetByteaP(X) ((bytea *) PG_DETOAST_DATUM(X)) |
| | #define DatumGetTextP(X) ((text *) PG_DETOAST_DATUM(X)) |
| | #define DatumGetBpCharP(X) ((BpChar *) PG_DETOAST_DATUM(X)) |
| | #define DatumGetVarCharP(X) ((VarChar *) PG_DETOAST_DATUM(X)) |
| | #define PG_GETARG_BYTEA_P(n) DatumGetByteaP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_TEXT_P(n) DatumGetTextP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_BPCHAR_P(n) DatumGetBpCharP(PG_GETARG_DATUM(n)) |
| | #define PG_GETARG_VARCHAR_P(n) DatumGetVarCharP(PG_GETARG_DATUM(n)) |
| |
|
| | |
| | #define PG_HAS_OPCLASS_OPTIONS() has_fn_opclass_options(fcinfo->flinfo) |
| | #define PG_GET_OPCLASS_OPTIONS() get_fn_opclass_options(fcinfo->flinfo) |
| |
|
| | |
| | #define PG_RETURN_NULL() \ |
| | do { fcinfo->isnull = true; return (Datum) 0; } while (0) |
| |
|
| | |
| | #define PG_RETURN_VOID() return (Datum) 0 |
| |
|
| | |
| |
|
| | #define PG_RETURN_DATUM(x) return (x) |
| | #define PG_RETURN_INT32(x) return Int32GetDatum(x) |
| | #define PG_RETURN_UINT32(x) return UInt32GetDatum(x) |
| | #define PG_RETURN_INT16(x) return Int16GetDatum(x) |
| | #define PG_RETURN_UINT16(x) return UInt16GetDatum(x) |
| | #define PG_RETURN_CHAR(x) return CharGetDatum(x) |
| | #define PG_RETURN_BOOL(x) return BoolGetDatum(x) |
| | #define PG_RETURN_OID(x) return ObjectIdGetDatum(x) |
| | #define PG_RETURN_POINTER(x) return PointerGetDatum(x) |
| | #define PG_RETURN_CSTRING(x) return CStringGetDatum(x) |
| | #define PG_RETURN_NAME(x) return NameGetDatum(x) |
| | #define PG_RETURN_TRANSACTIONID(x) return TransactionIdGetDatum(x) |
| | |
| | #define PG_RETURN_FLOAT4(x) return Float4GetDatum(x) |
| | #define PG_RETURN_FLOAT8(x) return Float8GetDatum(x) |
| | #define PG_RETURN_INT64(x) return Int64GetDatum(x) |
| | #define PG_RETURN_UINT64(x) return UInt64GetDatum(x) |
| | |
| | #define PG_RETURN_BYTEA_P(x) PG_RETURN_POINTER(x) |
| | #define PG_RETURN_TEXT_P(x) PG_RETURN_POINTER(x) |
| | #define PG_RETURN_BPCHAR_P(x) PG_RETURN_POINTER(x) |
| | #define PG_RETURN_VARCHAR_P(x) PG_RETURN_POINTER(x) |
| | #define PG_RETURN_HEAPTUPLEHEADER(x) return HeapTupleHeaderGetDatum(x) |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | typedef struct |
| | { |
| | int api_version; |
| | |
| | } Pg_finfo_record; |
| |
|
| | |
| | typedef const Pg_finfo_record *(*PGFInfoFunction) (void); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #define PG_FUNCTION_INFO_V1(funcname) \ |
| | extern PGDLLEXPORT Datum funcname(PG_FUNCTION_ARGS); \ |
| | extern PGDLLEXPORT const Pg_finfo_record * CppConcat(pg_finfo_,funcname)(void); \ |
| | const Pg_finfo_record * \ |
| | CppConcat(pg_finfo_,funcname) (void) \ |
| | { \ |
| | static const Pg_finfo_record my_finfo = { 1 }; \ |
| | return &my_finfo; \ |
| | } \ |
| | extern int no_such_variable |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | extern PGDLLEXPORT void _PG_init(void); |
| | extern PGDLLEXPORT void _PG_fini(void); |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | typedef struct |
| | { |
| | int len; |
| | int version; |
| | int funcmaxargs; |
| | int indexmaxkeys; |
| | int namedatalen; |
| | int float8byval; |
| | char abi_extra[32]; |
| | } Pg_magic_struct; |
| |
|
| | |
| | #define PG_MODULE_MAGIC_DATA \ |
| | { \ |
| | sizeof(Pg_magic_struct), \ |
| | PG_VERSION_NUM / 100, \ |
| | FUNC_MAX_ARGS, \ |
| | INDEX_MAX_KEYS, \ |
| | NAMEDATALEN, \ |
| | FLOAT8PASSBYVAL, \ |
| | FMGR_ABI_EXTRA, \ |
| | } |
| |
|
| | StaticAssertDecl(sizeof(FMGR_ABI_EXTRA) <= sizeof(((Pg_magic_struct *) 0)->abi_extra), |
| | "FMGR_ABI_EXTRA too long"); |
| |
|
| | |
| | |
| | |
| | |
| | typedef const Pg_magic_struct *(*PGModuleMagicFunction) (void); |
| |
|
| | #define PG_MAGIC_FUNCTION_NAME Pg_magic_func |
| | #define PG_MAGIC_FUNCTION_NAME_STRING "Pg_magic_func" |
| |
|
| | #define PG_MODULE_MAGIC \ |
| | extern PGDLLEXPORT const Pg_magic_struct *PG_MAGIC_FUNCTION_NAME(void); \ |
| | const Pg_magic_struct * \ |
| | PG_MAGIC_FUNCTION_NAME(void) \ |
| | { \ |
| | static const Pg_magic_struct Pg_magic_data = PG_MODULE_MAGIC_DATA; \ |
| | return &Pg_magic_data; \ |
| | } \ |
| | extern int no_such_variable |
| |
|
| |
|
| | |
| | |
| | |
| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | extern Datum DirectFunctionCall1Coll(PGFunction func, Oid collation, |
| | Datum arg1); |
| | extern Datum DirectFunctionCall2Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2); |
| | extern Datum DirectFunctionCall3Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3); |
| | extern Datum DirectFunctionCall4Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4); |
| | extern Datum DirectFunctionCall5Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5); |
| | extern Datum DirectFunctionCall6Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6); |
| | extern Datum DirectFunctionCall7Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7); |
| | extern Datum DirectFunctionCall8Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8); |
| | extern Datum DirectFunctionCall9Coll(PGFunction func, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8, |
| | Datum arg9); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | extern Datum CallerFInfoFunctionCall1(PGFunction func, FmgrInfo *flinfo, |
| | Oid collation, Datum arg1); |
| | extern Datum CallerFInfoFunctionCall2(PGFunction func, FmgrInfo *flinfo, |
| | Oid collation, Datum arg1, Datum arg2); |
| |
|
| | |
| | |
| | |
| | |
| | extern Datum FunctionCall0Coll(FmgrInfo *flinfo, Oid collation); |
| | extern Datum FunctionCall1Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1); |
| | extern Datum FunctionCall2Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2); |
| | extern Datum FunctionCall3Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3); |
| | extern Datum FunctionCall4Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4); |
| | extern Datum FunctionCall5Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5); |
| | extern Datum FunctionCall6Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6); |
| | extern Datum FunctionCall7Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7); |
| | extern Datum FunctionCall8Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8); |
| | extern Datum FunctionCall9Coll(FmgrInfo *flinfo, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8, |
| | Datum arg9); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | extern Datum OidFunctionCall0Coll(Oid functionId, Oid collation); |
| | extern Datum OidFunctionCall1Coll(Oid functionId, Oid collation, |
| | Datum arg1); |
| | extern Datum OidFunctionCall2Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2); |
| | extern Datum OidFunctionCall3Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3); |
| | extern Datum OidFunctionCall4Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4); |
| | extern Datum OidFunctionCall5Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5); |
| | extern Datum OidFunctionCall6Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6); |
| | extern Datum OidFunctionCall7Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7); |
| | extern Datum OidFunctionCall8Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8); |
| | extern Datum OidFunctionCall9Coll(Oid functionId, Oid collation, |
| | Datum arg1, Datum arg2, |
| | Datum arg3, Datum arg4, Datum arg5, |
| | Datum arg6, Datum arg7, Datum arg8, |
| | Datum arg9); |
| |
|
| | |
| | |
| | |
| | |
| | #define DirectFunctionCall1(func, arg1) \ |
| | DirectFunctionCall1Coll(func, InvalidOid, arg1) |
| | #define DirectFunctionCall2(func, arg1, arg2) \ |
| | DirectFunctionCall2Coll(func, InvalidOid, arg1, arg2) |
| | #define DirectFunctionCall3(func, arg1, arg2, arg3) \ |
| | DirectFunctionCall3Coll(func, InvalidOid, arg1, arg2, arg3) |
| | #define DirectFunctionCall4(func, arg1, arg2, arg3, arg4) \ |
| | DirectFunctionCall4Coll(func, InvalidOid, arg1, arg2, arg3, arg4) |
| | #define DirectFunctionCall5(func, arg1, arg2, arg3, arg4, arg5) \ |
| | DirectFunctionCall5Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5) |
| | #define DirectFunctionCall6(func, arg1, arg2, arg3, arg4, arg5, arg6) \ |
| | DirectFunctionCall6Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6) |
| | #define DirectFunctionCall7(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \ |
| | DirectFunctionCall7Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7) |
| | #define DirectFunctionCall8(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ |
| | DirectFunctionCall8Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) |
| | #define DirectFunctionCall9(func, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ |
| | DirectFunctionCall9Coll(func, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) |
| | #define FunctionCall1(flinfo, arg1) \ |
| | FunctionCall1Coll(flinfo, InvalidOid, arg1) |
| | #define FunctionCall2(flinfo, arg1, arg2) \ |
| | FunctionCall2Coll(flinfo, InvalidOid, arg1, arg2) |
| | #define FunctionCall3(flinfo, arg1, arg2, arg3) \ |
| | FunctionCall3Coll(flinfo, InvalidOid, arg1, arg2, arg3) |
| | #define FunctionCall4(flinfo, arg1, arg2, arg3, arg4) \ |
| | FunctionCall4Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4) |
| | #define FunctionCall5(flinfo, arg1, arg2, arg3, arg4, arg5) \ |
| | FunctionCall5Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5) |
| | #define FunctionCall6(flinfo, arg1, arg2, arg3, arg4, arg5, arg6) \ |
| | FunctionCall6Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6) |
| | #define FunctionCall7(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \ |
| | FunctionCall7Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7) |
| | #define FunctionCall8(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ |
| | FunctionCall8Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) |
| | #define FunctionCall9(flinfo, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ |
| | FunctionCall9Coll(flinfo, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) |
| | #define OidFunctionCall0(functionId) \ |
| | OidFunctionCall0Coll(functionId, InvalidOid) |
| | #define OidFunctionCall1(functionId, arg1) \ |
| | OidFunctionCall1Coll(functionId, InvalidOid, arg1) |
| | #define OidFunctionCall2(functionId, arg1, arg2) \ |
| | OidFunctionCall2Coll(functionId, InvalidOid, arg1, arg2) |
| | #define OidFunctionCall3(functionId, arg1, arg2, arg3) \ |
| | OidFunctionCall3Coll(functionId, InvalidOid, arg1, arg2, arg3) |
| | #define OidFunctionCall4(functionId, arg1, arg2, arg3, arg4) \ |
| | OidFunctionCall4Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4) |
| | #define OidFunctionCall5(functionId, arg1, arg2, arg3, arg4, arg5) \ |
| | OidFunctionCall5Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5) |
| | #define OidFunctionCall6(functionId, arg1, arg2, arg3, arg4, arg5, arg6) \ |
| | OidFunctionCall6Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6) |
| | #define OidFunctionCall7(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7) \ |
| | OidFunctionCall7Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7) |
| | #define OidFunctionCall8(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) \ |
| | OidFunctionCall8Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8) |
| | #define OidFunctionCall9(functionId, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) \ |
| | OidFunctionCall9Coll(functionId, InvalidOid, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9) |
| |
|
| |
|
| | |
| | extern Datum InputFunctionCall(FmgrInfo *flinfo, char *str, |
| | Oid typioparam, int32 typmod); |
| | extern bool InputFunctionCallSafe(FmgrInfo *flinfo, char *str, |
| | Oid typioparam, int32 typmod, |
| | fmNodePtr escontext, |
| | Datum *result); |
| | extern bool DirectInputFunctionCallSafe(PGFunction func, char *str, |
| | Oid typioparam, int32 typmod, |
| | fmNodePtr escontext, |
| | Datum *result); |
| | extern Datum OidInputFunctionCall(Oid functionId, char *str, |
| | Oid typioparam, int32 typmod); |
| | extern char *OutputFunctionCall(FmgrInfo *flinfo, Datum val); |
| | extern char *OidOutputFunctionCall(Oid functionId, Datum val); |
| | extern Datum ReceiveFunctionCall(FmgrInfo *flinfo, fmStringInfo buf, |
| | Oid typioparam, int32 typmod); |
| | extern Datum OidReceiveFunctionCall(Oid functionId, fmStringInfo buf, |
| | Oid typioparam, int32 typmod); |
| | extern bytea *SendFunctionCall(FmgrInfo *flinfo, Datum val); |
| | extern bytea *OidSendFunctionCall(Oid functionId, Datum val); |
| |
|
| |
|
| | |
| | |
| | |
| | extern const Pg_finfo_record *fetch_finfo_record(void *filehandle, const char *funcname); |
| | extern Oid fmgr_internal_function(const char *proname); |
| | extern Oid get_fn_expr_rettype(FmgrInfo *flinfo); |
| | extern Oid get_fn_expr_argtype(FmgrInfo *flinfo, int argnum); |
| | extern Oid get_call_expr_argtype(fmNodePtr expr, int argnum); |
| | extern bool get_fn_expr_arg_stable(FmgrInfo *flinfo, int argnum); |
| | extern bool get_call_expr_arg_stable(fmNodePtr expr, int argnum); |
| | extern bool get_fn_expr_variadic(FmgrInfo *flinfo); |
| | extern bytea *get_fn_opclass_options(FmgrInfo *flinfo); |
| | extern bool has_fn_opclass_options(FmgrInfo *flinfo); |
| | extern void set_fn_opclass_options(FmgrInfo *flinfo, bytea *options); |
| | extern bool CheckFunctionValidatorAccess(Oid validatorOid, Oid functionOid); |
| |
|
| | |
| | |
| | |
| | extern PGDLLIMPORT char *Dynamic_library_path; |
| |
|
| | extern void *load_external_function(const char *filename, const char *funcname, |
| | bool signalNotFound, void **filehandle); |
| | extern void *lookup_external_function(void *filehandle, const char *funcname); |
| | extern void load_file(const char *filename, bool restricted); |
| | extern void **find_rendezvous_variable(const char *varName); |
| | extern Size EstimateLibraryStateSpace(void); |
| | extern void SerializeLibraryState(Size maxsize, char *start_address); |
| | extern void RestoreLibraryState(char *start_address); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | |
| | #define AGG_CONTEXT_AGGREGATE 1 |
| | #define AGG_CONTEXT_WINDOW 2 |
| |
|
| | extern int AggCheckCallContext(FunctionCallInfo fcinfo, |
| | MemoryContext *aggcontext); |
| | extern fmAggrefPtr AggGetAggref(FunctionCallInfo fcinfo); |
| | extern MemoryContext AggGetTempMemoryContext(FunctionCallInfo fcinfo); |
| | extern bool AggStateIsShared(FunctionCallInfo fcinfo); |
| | extern void AggRegisterCallback(FunctionCallInfo fcinfo, |
| | fmExprContextCallbackFunction func, |
| | Datum arg); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | typedef enum FmgrHookEventType |
| | { |
| | FHET_START, |
| | FHET_END, |
| | FHET_ABORT, |
| | } FmgrHookEventType; |
| |
|
| | typedef bool (*needs_fmgr_hook_type) (Oid fn_oid); |
| |
|
| | typedef void (*fmgr_hook_type) (FmgrHookEventType event, |
| | FmgrInfo *flinfo, Datum *arg); |
| |
|
| | extern PGDLLIMPORT needs_fmgr_hook_type needs_fmgr_hook; |
| | extern PGDLLIMPORT fmgr_hook_type fmgr_hook; |
| |
|
| | #define FmgrHookIsNeeded(fn_oid) \ |
| | (!needs_fmgr_hook ? false : (*needs_fmgr_hook)(fn_oid)) |
| |
|
| | #endif |
| |
|