Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 23 | |
| 24 | // Format implements the NodeFormatter interface. |
| 25 | func (t *TableName) Format(ctx *FmtCtx) { |
| 26 | if ctx.tableNameFormatter != nil { |
| 27 | ctx.tableNameFormatter(ctx, t) |
| 28 | return |
| 29 | } |
| 30 | t.objName.Format(ctx) |
| 31 | } |
| 32 | |
| 33 | func (t *TableName) objectName() {} |
| 34 |