| 1459 | callback->GetResponse().get(), callback); |
| 1460 | } |
| 1461 | bool TabletClient::SubBatchRequestQuery(const ::fedb::api::SQLBatchRequestQueryRequest& request, |
| 1462 | fedb::RpcCallback<fedb::api::SQLBatchRequestQueryResponse>* callback) { |
| 1463 | if (callback == nullptr) { |
| 1464 | return false; |
| 1465 | } |
| 1466 | return client_.SendRequest(&::fedb::api::TabletServer_Stub::SQLBatchRequestQuery, |
| 1467 | callback->GetController().get(), &request, |
| 1468 | callback->GetResponse().get(), callback); |
| 1469 | } |
| 1470 | |
| 1471 | bool TabletClient::CallSQLBatchRequestProcedure(const std::string& db, const std::string& sp_name, |
| 1472 | std::shared_ptr<::fedb::sdk::SQLRequestRowBatch> row_batch, |
no test coverage detected