Prepare represents a PREPARE statement.
| 17 | |
| 18 | // Prepare represents a PREPARE statement. |
| 19 | type Prepare struct { |
| 20 | Name Name |
| 21 | Types []*types.T |
| 22 | Statement Statement |
| 23 | } |
| 24 | |
| 25 | // Format implements the NodeFormatter interface. |
| 26 | func (node *Prepare) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected