| 1240 | } |
| 1241 | |
| 1242 | type CreateDatabase struct { |
| 1243 | CreatePos Pos // position of CREATE keyword |
| 1244 | StatementEnd Pos |
| 1245 | Name Expr |
| 1246 | IfNotExists bool // true if 'IF NOT EXISTS' is specified |
| 1247 | OnCluster *ClusterClause |
| 1248 | Engine *EngineExpr |
| 1249 | Comment *StringLiteral |
| 1250 | } |
| 1251 | |
| 1252 | func (c *CreateDatabase) Pos() Pos { |
| 1253 | return c.CreatePos |
nothing calls this directly
no outgoing calls
no test coverage detected