| 1278 | } |
| 1279 | |
| 1280 | type 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 | |
| 1296 | func (c *CreateTable) Pos() Pos { |
| 1297 | return c.CreatePos |
nothing calls this directly
no outgoing calls
no test coverage detected