Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 417 | |
| 418 | // Format implements the NodeFormatter interface. |
| 419 | func (node *ShowSyntax) Format(ctx *FmtCtx) { |
| 420 | ctx.WriteString("SHOW SYNTAX ") |
| 421 | ctx.WriteString(lex.EscapeSQLString(node.Statement)) |
| 422 | } |
| 423 | |
| 424 | // ShowTransactionStatus represents a SHOW TRANSACTION STATUS statement. |
| 425 | type ShowTransactionStatus struct { |
nothing calls this directly
no test coverage detected