* finish_foreign_modify * Release resources for a foreign insert/update/delete operation */
| 4374 | * Release resources for a foreign insert/update/delete operation |
| 4375 | */ |
| 4376 | static void |
| 4377 | finish_foreign_modify(PgFdwModifyState *fmstate) |
| 4378 | { |
| 4379 | Assert(fmstate != NULL); |
| 4380 | |
| 4381 | /* If we created a prepared statement, destroy it */ |
| 4382 | deallocate_query(fmstate); |
| 4383 | |
| 4384 | /* Release remote connection */ |
| 4385 | ReleaseConnection(fmstate->conn); |
| 4386 | fmstate->conn = NULL; |
| 4387 | } |
| 4388 | |
| 4389 | /* |
| 4390 | * deallocate_query |
no test coverage detected