#include #include #include "db2_fdw.h" /** external variables */ /** external prototypes */ extern void db2EndForeignModifyCommon(EState *estate, ResultRelInfo *rinfo); /** local prototypes */ void db2EndForeignInsert (EState* estate, ResultRelInfo* rinfo); /* db2EndForeignInsert * Close the currently active DB2 statement. */ void db2EndForeignInsert (EState* estate, ResultRelInfo* rinfo) { db2Entry1(); db2EndForeignModifyCommon(estate, rinfo); db2Exit1(); }