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

Struct CreateTable

parser/ast.go:1280–1294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1278}
1279
1280type CreateTable struct {
1281 CreatePos Pos // position of CREATE|ATTACH keyword
1282 StatementEnd Pos
1283 OrReplace bool
1284 Name *TableIdentifier
1285 IfNotExists bool
1286 UUID *UUID
1287 OnCluster *ClusterClause
1288 TableSchema *TableSchemaClause
1289 Engine *EngineExpr
1290 SubQuery *SubQuery
1291 TableFunction *TableFunctionExpr
1292 HasTemporary bool
1293 Comment *StringLiteral
1294}
1295
1296func (c *CreateTable) Pos() Pos {
1297 return c.CreatePos

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected