PostgreSQL Source Code git master
|
#include <tablefunc.h>
Data Fields | |
void(* | InitOpaque )(struct TableFuncScanState *state, int natts) |
void(* | SetDocument )(struct TableFuncScanState *state, Datum value) |
void(* | SetNamespace )(struct TableFuncScanState *state, const char *name, const char *uri) |
void(* | SetRowFilter )(struct TableFuncScanState *state, const char *path) |
void(* | SetColumnFilter )(struct TableFuncScanState *state, const char *path, int colnum) |
bool(* | FetchRow )(struct TableFuncScanState *state) |
Datum(* | GetValue )(struct TableFuncScanState *state, int colnum, Oid typid, int32 typmod, bool *isnull) |
void(* | DestroyOpaque )(struct TableFuncScanState *state) |
Definition at line 52 of file tablefunc.h.
void(* TableFuncRoutine::DestroyOpaque) (struct TableFuncScanState *state) |
Definition at line 64 of file tablefunc.h.
Referenced by tfuncFetchRows().
bool(* TableFuncRoutine::FetchRow) (struct TableFuncScanState *state) |
Definition at line 61 of file tablefunc.h.
Referenced by tfuncLoadRows().
Datum(* TableFuncRoutine::GetValue) (struct TableFuncScanState *state, int colnum, Oid typid, int32 typmod, bool *isnull) |
Definition at line 62 of file tablefunc.h.
Referenced by tfuncLoadRows().
void(* TableFuncRoutine::InitOpaque) (struct TableFuncScanState *state, int natts) |
Definition at line 54 of file tablefunc.h.
Referenced by tfuncFetchRows().
void(* TableFuncRoutine::SetColumnFilter) (struct TableFuncScanState *state, const char *path, int colnum) |
Definition at line 59 of file tablefunc.h.
Referenced by tfuncInitialize().
void(* TableFuncRoutine::SetDocument) (struct TableFuncScanState *state, Datum value) |
Definition at line 55 of file tablefunc.h.
Referenced by tfuncInitialize().
void(* TableFuncRoutine::SetNamespace) (struct TableFuncScanState *state, const char *name, const char *uri) |
Definition at line 56 of file tablefunc.h.
Referenced by tfuncInitialize().
void(* TableFuncRoutine::SetRowFilter) (struct TableFuncScanState *state, const char *path) |
Definition at line 58 of file tablefunc.h.
Referenced by tfuncInitialize().