| 374 | } |
| 375 | |
| 376 | arrow::Result<ActionClosePreparedStatementRequest> |
| 377 | ParseActionClosePreparedStatementRequest(const Action& action) { |
| 378 | pb::sql::ActionClosePreparedStatementRequest command; |
| 379 | RETURN_NOT_OK(flight::internal::UnpackProtoAction(action, &command)); |
| 380 | |
| 381 | ActionClosePreparedStatementRequest result; |
| 382 | result.prepared_statement_handle = command.prepared_statement_handle(); |
| 383 | return result; |
| 384 | } |
| 385 | |
| 386 | arrow::Result<ActionEndSavepointRequest> ParseActionEndSavepointRequest( |
| 387 | const Action& action) { |
nothing calls this directly
no test coverage detected