Format formats the node.
(buf *nodeBuffer)
| 390 | |
| 391 | // Format formats the node. |
| 392 | func (node *Insert) Format(buf *nodeBuffer) { |
| 393 | buf.Printf("%s %v%sinto %v%v%v %v%v", |
| 394 | node.Action, |
| 395 | node.Comments, node.Ignore, |
| 396 | node.Table, node.Partitions, node.Columns, node.Rows, node.OnDup) |
| 397 | } |
| 398 | |
| 399 | // InsertRows represents the rows for an INSERT statement. |
| 400 | type InsertRows interface { |