Skip to content

Latest commit

 

History

History
101 lines (59 loc) · 2.63 KB

File metadata and controls

101 lines (59 loc) · 2.63 KB

minisql.sql.ast.CreateIndexStatement

Home · Source file

CreateIndexStatement

struct CreateIndexStatement

Groups the create index statement state and preserves the field relationships documented below.

View source

Members

columns

columns

Contains ordered column or deterministic expression key AST nodes.

View source

ifNotExists

ifNotExists

Stores the if not exists associated with this value.

View source

includeColumns

includeColumns

Ordered non-key columns persisted in each leaf entry for covering scans.

View source

name

name

Stores the name associated with this value.

View source

tableName

tableName

Stores the table name associated with this value.

View source

unique

unique

Indicates whether the unique condition is active.

View source

whereExpression

whereExpression

Optional deterministic predicate selecting rows stored by a partial index.

View source