Execute represents an EXECUTE statement.
| 57 | |
| 58 | // Execute represents an EXECUTE statement. |
| 59 | type Execute struct { |
| 60 | Name Name |
| 61 | Params Exprs |
| 62 | // DiscardRows is set when we want to throw away all the rows rather than |
| 63 | // returning for client (used for testing and benchmarking). |
| 64 | DiscardRows bool |
| 65 | } |
| 66 | |
| 67 | // Format implements the NodeFormatter interface. |
| 68 | func (node *Execute) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected