Skip to content

Commit

Permalink
apacheGH-43717: [Java][FlightSQL] Add all ActionTypes to FlightSqlUti…
Browse files Browse the repository at this point in the history
…ls.FLIGHT_SQL_ACTIONS (apache#43718)

This adds all of the FlightSQL ActionTypes to FlightSqlUtils.FLIGHT_SQL_ACTIONS

* GitHub Issue: apache#43717

Authored-by: Devin Smith <[email protected]>
Signed-off-by: David Li <[email protected]>
  • Loading branch information
devinrsmith authored Aug 22, 2024
1 parent f078942 commit 6a1d052
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 6a1d052

Please sign in to comment.