CreateIndexStatement represents a CREATE INDEX statement
| 1620 | |
| 1621 | // CreateIndexStatement represents a CREATE INDEX statement |
| 1622 | type CreateIndexStatement struct { |
| 1623 | Unique bool |
| 1624 | IfNotExists bool |
| 1625 | Name string |
| 1626 | Table string |
| 1627 | Columns []IndexColumn |
| 1628 | Using string |
| 1629 | Where Expression |
| 1630 | } |
| 1631 | |
| 1632 | func (c *CreateIndexStatement) statementNode() {} |
| 1633 | func (c CreateIndexStatement) TokenLiteral() string { return "CREATE INDEX" } |
nothing calls this directly
no outgoing calls
no test coverage detected