This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 03463dec5f GH-34244: [Go][FlightRPC] SQLite example report
Transactions support (#34245)
03463dec5f is described below
commit 03463dec5f920dc75340f04338414ce35240b14d
Author: Matt Topol <[email protected]>
AuthorDate: Fri Feb 17 15:24:45 2023 -0500
GH-34244: [Go][FlightRPC] SQLite example report Transactions support
(#34245)
### Rationale for this change
### What changes are included in this PR?
Just adding the FlightSQL info to report Transactions Supported in the
Flight SQL SQlite server example.
* Closes: #34244
Authored-by: Matt Topol <[email protected]>
Signed-off-by: Matt Topol <[email protected]>
---
go/arrow/flight/flightsql/example/sqlite_info.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/go/arrow/flight/flightsql/example/sqlite_info.go
b/go/arrow/flight/flightsql/example/sqlite_info.go
index 506d78b4d1..d37fd155cd 100644
--- a/go/arrow/flight/flightsql/example/sqlite_info.go
+++ b/go/arrow/flight/flightsql/example/sqlite_info.go
@@ -38,6 +38,8 @@ func SqlInfoResultMap() flightsql.SqlInfoResultMap {
uint32(flightsql.SqlInfoQuotedIdentifierCase):
int64(flightsql.SqlCaseSensitivityCaseInsensitive),
uint32(flightsql.SqlInfoAllTablesAreASelectable): true,
uint32(flightsql.SqlInfoNullOrdering):
int64(flightsql.SqlNullOrderingSortAtStart),
+ uint32(flightsql.SqlInfoFlightSqlServerTransaction):
int32(flightsql.SqlTransactionTransaction),
+ uint32(flightsql.SqlInfoTransactionsSupported): true,
uint32(flightsql.SqlInfoKeywords): []string{"ABORT",
"ACTION",
"ADD",