| 3786 | |
| 3787 | |
| 3788 | void rem_port::batch_rls(P_BATCH_FREE_CANCEL* batch, PACKET* sendL) |
| 3789 | { |
| 3790 | LocalStatus ls; |
| 3791 | CheckStatusWrapper status_vector(&ls); |
| 3792 | |
| 3793 | Rsr* statement; |
| 3794 | getHandle(statement, batch->p_batch_statement); |
| 3795 | statement->checkIface(); |
| 3796 | statement->checkBatch(); |
| 3797 | |
| 3798 | statement->rsr_batch->release(); |
| 3799 | statement->rsr_batch = nullptr; |
| 3800 | |
| 3801 | this->send_response(sendL, 0, 0, &status_vector, true); |
| 3802 | } |
| 3803 | |
| 3804 | |
| 3805 | void rem_port::batch_cancel(P_BATCH_FREE_CANCEL* batch, PACKET* sendL) |
no test coverage detected