This is an automated email from the ASF dual-hosted git repository.
lidavidm 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 6a1d052097 GH-43717: [Java][FlightSQL] Add all ActionTypes to
FlightSqlUtils.FLIGHT_SQL_ACTIONS (#43718)
6a1d052097 is described below
commit 6a1d0520974355a749557c993841732d4fcf894c
Author: Devin Smith <[email protected]>
AuthorDate: Wed Aug 21 18:12:45 2024 -0700
GH-43717: [Java][FlightSQL] Add all ActionTypes to
FlightSqlUtils.FLIGHT_SQL_ACTIONS (#43718)
This adds all of the FlightSQL ActionTypes to
FlightSqlUtils.FLIGHT_SQL_ACTIONS
* GitHub Issue: #43717
Authored-by: Devin Smith <[email protected]>
Signed-off-by: David Li <[email protected]>
---
.../main/java/org/apache/arrow/flight/sql/FlightSqlUtils.java | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git
a/java/flight/flight-sql/src/main/java/org/apache/arrow/flight/sql/FlightSqlUtils.java
b/java/flight/flight-sql/src/main/java/org/apache/arrow/flight/sql/FlightSqlUtils.java
index 9bb9504769..9e13e57d66 100644
---
a/java/flight/flight-sql/src/main/java/org/apache/arrow/flight/sql/FlightSqlUtils.java
+++
b/java/flight/flight-sql/src/main/java/org/apache/arrow/flight/sql/FlightSqlUtils.java
@@ -82,7 +82,15 @@ public final class FlightSqlUtils {
+ "Response Message: N/A");
public static final List<ActionType> FLIGHT_SQL_ACTIONS =
- ImmutableList.of(FLIGHT_SQL_CREATE_PREPARED_STATEMENT,
FLIGHT_SQL_CLOSE_PREPARED_STATEMENT);
+ ImmutableList.of(
+ FLIGHT_SQL_BEGIN_SAVEPOINT,
+ FLIGHT_SQL_BEGIN_TRANSACTION,
+ FLIGHT_SQL_CREATE_PREPARED_STATEMENT,
+ FLIGHT_SQL_CLOSE_PREPARED_STATEMENT,
+ FLIGHT_SQL_CREATE_PREPARED_SUBSTRAIT_PLAN,
+ FLIGHT_SQL_CANCEL_QUERY,
+ FLIGHT_SQL_END_SAVEPOINT,
+ FLIGHT_SQL_END_TRANSACTION);
/**
* Helper to parse {@link com.google.protobuf.Any} objects to the specific
protobuf object.