| 1444 | } |
| 1445 | |
| 1446 | type CreateView struct { |
| 1447 | CreatePos Pos // position of CREATE|ATTACH keyword |
| 1448 | StatementEnd Pos |
| 1449 | OrReplace bool |
| 1450 | Name *TableIdentifier |
| 1451 | IfNotExists bool |
| 1452 | UUID *UUID |
| 1453 | OnCluster *ClusterClause |
| 1454 | TableSchema *TableSchemaClause |
| 1455 | Comment *StringLiteral |
| 1456 | SubQuery *SubQuery |
| 1457 | } |
| 1458 | |
| 1459 | func (c *CreateView) Pos() Pos { |
| 1460 | return c.CreatePos |
nothing calls this directly
no outgoing calls
no test coverage detected