PostgreSQL Source Code git master
|
#include <copyapi.h>
Data Fields | |
void(* | CopyFromInFunc )(CopyFromState cstate, Oid atttypid, FmgrInfo *finfo, Oid *typioparam) |
void(* | CopyFromStart )(CopyFromState cstate, TupleDesc tupDesc) |
bool(* | CopyFromOneRow )(CopyFromState cstate, ExprContext *econtext, Datum *values, bool *nulls) |
void(* | CopyFromEnd )(CopyFromState cstate) |
void(* CopyFromRoutine::CopyFromEnd) (CopyFromState cstate) |
Definition at line 102 of file copyapi.h.
Referenced by EndCopyFrom().
void(* CopyFromRoutine::CopyFromInFunc) (CopyFromState cstate, Oid atttypid, FmgrInfo *finfo, Oid *typioparam) |
Definition at line 74 of file copyapi.h.
Referenced by BeginCopyFrom().
bool(* CopyFromRoutine::CopyFromOneRow) (CopyFromState cstate, ExprContext *econtext, Datum *values, bool *nulls) |
Definition at line 96 of file copyapi.h.
Referenced by NextCopyFrom().
void(* CopyFromRoutine::CopyFromStart) (CopyFromState cstate, TupleDesc tupDesc) |
Definition at line 85 of file copyapi.h.
Referenced by BeginCopyFrom().