lidavidm commented on code in PR #13492:
URL: https://github.com/apache/arrow/pull/13492#discussion_r912524410
##########
format/FlightSql.proto:
##########
@@ -760,6 +772,18 @@ enum SqlInfo {
SQL_STORED_FUNCTIONS_USING_CALL_SYNTAX_SUPPORTED = 576;
}
+// The level of support for Flight SQL transaction RPCs.
+enum FlightSqlTransactionSupport {
+ // Unknown/not indicated
+ FLIGHT_SQL_TRANSACTION_SUPPORT_UNKNOWN = 0;
+ // No supprot
+ FLIGHT_SQL_TRANSACTION_SUPPORT_NONE = 1;
+ // Transactions, but not savepoints
Review Comment:
The terminology is taken from JDBC and some databases, e.g. see
[Postgres](https://www.postgresql.org/docs/current/sql-savepoint.html),
[JDBC](https://docs.oracle.com/javase/8/docs/api/java/sql/Connection.html#setSavepoint-java.lang.String-).
I will add some more language so this is reasonably self-contained.
--
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]