MCPcopy Create free account
hub / github.com/AfterShip/clickhouse-sql-parser / CreateView

Struct CreateView

parser/ast.go:1446–1457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1444}
1445
1446type 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
1459func (c *CreateView) Pos() Pos {
1460 return c.CreatePos

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected