MCPcopy Create free account
hub / github.com/apache/arrow / ParseActionClosePreparedStatementRequest

Function ParseActionClosePreparedStatementRequest

cpp/src/arrow/flight/sql/server.cc:376–384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374}
375
376arrow::Result<ActionClosePreparedStatementRequest>
377ParseActionClosePreparedStatementRequest(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
386arrow::Result<ActionEndSavepointRequest> ParseActionEndSavepointRequest(
387 const Action& action) {

Callers

nothing calls this directly

Calls 1

UnpackProtoActionFunction · 0.85

Tested by

no test coverage detected