Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 382 | |
| 383 | // Format implements the NodeFormatter interface. |
| 384 | func (node *ShowSyntax) Format(ctx *FmtCtx) { |
| 385 | ctx.WriteString("SHOW SYNTAX ") |
| 386 | ctx.WriteString(lex.EscapeSQLString(node.Statement)) |
| 387 | } |
| 388 | |
| 389 | // ShowTransactionStatus represents a SHOW TRANSACTION STATUS statement. |
| 390 | type ShowTransactionStatus struct { |
nothing calls this directly
no test coverage detected