(formatter *Formatter)
| 319 | } |
| 320 | |
| 321 | func (a *AlterTableDelete) FormatSQL(formatter *Formatter) { |
| 322 | formatter.WriteString("DELETE") |
| 323 | formatter.Break() |
| 324 | formatter.WriteString("WHERE ") |
| 325 | formatter.WriteExpr(a.WhereClause) |
| 326 | } |
| 327 | |
| 328 | func (a *AlterTableDetachPartition) FormatSQL(formatter *Formatter) { |
| 329 | formatter.WriteString("DETACH ") |
nothing calls this directly
no test coverage detected