emkornfield commented on code in PR #13492:
URL: https://github.com/apache/arrow/pull/13492#discussion_r912526395
##########
format/FlightSql.proto:
##########
@@ -1475,6 +1549,35 @@ message CommandStatementQuery {
// The SQL syntax.
string query = 1;
+ // Include the query as part of this transaction (by default queries are
auto-committed).
Review Comment:
It seems like maybe there should be something like:
```
message TransactionDetails {
oneof transaction {
ActionBeginTranscation begin_transaction = 1;
bytes existing_transaction_id = 2;
}
}
```
that can be included.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]