(formatter *Formatter)
| 326 | } |
| 327 | |
| 328 | func (a *AlterTableDetachPartition) FormatSQL(formatter *Formatter) { |
| 329 | formatter.WriteString("DETACH ") |
| 330 | formatter.WriteExpr(a.Partition) |
| 331 | if a.Settings != nil { |
| 332 | formatter.Break() |
| 333 | formatter.WriteExpr(a.Settings) |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | func (a *AlterTableDropColumn) FormatSQL(formatter *Formatter) { |
| 338 | formatter.WriteString("DROP COLUMN ") |
nothing calls this directly
no test coverage detected