| 330 | } |
| 331 | |
| 332 | arrow::Result<ActionBeginTransactionRequest> ParseActionBeginTransactionRequest( |
| 333 | const Action& action) { |
| 334 | pb::sql::ActionBeginTransactionRequest command; |
| 335 | RETURN_NOT_OK(flight::internal::UnpackProtoAction(action, &command)); |
| 336 | |
| 337 | ActionBeginTransactionRequest result; |
| 338 | return result; |
| 339 | } |
| 340 | |
| 341 | // ActionCancelQueryRequest is deprecated |
| 342 | ARROW_SUPPRESS_DEPRECATION_WARNING |
nothing calls this directly
no test coverage detected