Skip to content

Commit

Permalink
GH-43717: [Java][FlightSQL] Add all ActionTypes to FlightSqlUtils.FLI…
Browse files Browse the repository at this point in the history
…GHT_SQL_ACTIONS

Fixes #43717
  • Loading branch information
devinrsmith committed Aug 21, 2024
1 parent f078942 commit 75487bd
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 75487bd

Please sign in to comment.