Table of Contents

Enum ActionCancelQueryResult.Types.CancelResult

Namespace
Arrow.Flight.Protocol.Sql
Assembly
Apache.Arrow.Flight.Sql.dll
public enum ActionCancelQueryResult.Types.CancelResult

Fields

[OriginalName("CANCEL_RESULT_CANCELLED")] Cancelled = 1

The cancellation request is complete. Subsequent requests with the same payload may return CANCELLED or a NOT_FOUND error.

[OriginalName("CANCEL_RESULT_CANCELLING")] Cancelling = 2

The cancellation request is in progress. The client may retry the cancellation request.

[OriginalName("CANCEL_RESULT_NOT_CANCELLABLE")] NotCancellable = 3

The query is not cancellable. The client should not retry the cancellation request.

[OriginalName("CANCEL_RESULT_UNSPECIFIED")] Unspecified = 0

The cancellation status is unknown. Servers should avoid using this value (send a NOT_FOUND error if the requested query is not known). Clients can retry the request.