Table of Contents

Enum Searchable

Namespace
Arrow.Flight.Protocol.Sql
Assembly
Apache.Arrow.Flight.Sql.dll
public enum Searchable

Fields

[OriginalName("SEARCHABLE_BASIC")] Basic = 2

Indicates that the column can be used In a WHERE clause with any operator other than LIKE.

  • Allowed operators: comparison, quantified comparison, BETWEEN, DISTINCT, IN, MATCH, and UNIQUE.
[OriginalName("SEARCHABLE_CHAR")] Char = 1

Indicates that the column can be used in a WHERE clause if it is using a LIKE operator.

[OriginalName("SEARCHABLE_FULL")] Full = 3

Indicates that the column can be used in a WHERE clause using any operator.

[OriginalName("SEARCHABLE_NONE")] None = 0

Indicates that column cannot be used in a WHERE clause.