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

Function ParseActionBeginSavepointRequest

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

Source from the content-addressed store, hash-verified

319}
320
321arrow::Result<ActionBeginSavepointRequest> ParseActionBeginSavepointRequest(
322 const Action& action) {
323 pb::sql::ActionBeginSavepointRequest command;
324 RETURN_NOT_OK(flight::internal::UnpackProtoAction(action, &command));
325
326 ActionBeginSavepointRequest result;
327 result.transaction_id = command.transaction_id();
328 result.name = command.name();
329 return result;
330}
331
332arrow::Result<ActionBeginTransactionRequest> ParseActionBeginTransactionRequest(
333 const Action& action) {

Callers

nothing calls this directly

Calls 2

UnpackProtoActionFunction · 0.85
nameMethod · 0.45

Tested by

no test coverage detected