| 3717 | |
| 3718 | |
| 3719 | void rem_port::batch_regblob(P_BATCH_REGBLOB* batch, PACKET* sendL) |
| 3720 | { |
| 3721 | LocalStatus ls; |
| 3722 | CheckStatusWrapper status_vector(&ls); |
| 3723 | |
| 3724 | Rsr* statement; |
| 3725 | getHandle(statement, batch->p_batch_statement); |
| 3726 | statement->checkIface(); |
| 3727 | statement->checkBatch(); |
| 3728 | |
| 3729 | statement->rsr_batch->registerBlob(&status_vector, &batch->p_batch_exist_id, |
| 3730 | &batch->p_batch_blob_id); |
| 3731 | |
| 3732 | this->send_response(sendL, 0, 0, &status_vector, true); |
| 3733 | } |
| 3734 | |
| 3735 | |
| 3736 | void rem_port::batch_exec(P_BATCH_EXEC* batch, PACKET* sendL) |
no test coverage detected