Format formats the node.
(buf *nodeBuffer)
| 359 | |
| 360 | // Format formats the node. |
| 361 | func (node *Stream) Format(buf *nodeBuffer) { |
| 362 | buf.Printf("stream %v%v from %v", |
| 363 | node.Comments, node.SelectExpr, node.Table) |
| 364 | } |
| 365 | |
| 366 | // Insert represents an INSERT or REPLACE statement. |
| 367 | // Per the MySQL docs, http://dev.mysql.com/doc/refman/5.7/en/replace.html |