(formatter *Formatter)
| 371 | } |
| 372 | |
| 373 | func (a *AlterTableFreezePartition) FormatSQL(formatter *Formatter) { |
| 374 | formatter.WriteString("FREEZE") |
| 375 | if a.Partition != nil { |
| 376 | formatter.WriteByte(whitespace) |
| 377 | formatter.WriteExpr(a.Partition) |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | func (a *AlterTableMaterializeIndex) FormatSQL(formatter *Formatter) { |
| 382 | formatter.WriteString("MATERIALIZE INDEX") |
nothing calls this directly
no test coverage detected