()
| 246 | } |
| 247 | |
| 248 | func (b *SQLBuilder) writeTblName() error { |
| 249 | tn := ast.TableName{Schema: b.tbl.Schema, Name: b.tbl.Name} |
| 250 | return tn.Restore(b.restoreCtx) |
| 251 | } |
| 252 | |
| 253 | func (b *SQLBuilder) writeColName(col *model.ColumnInfo) { |
| 254 | b.restoreCtx.WriteName(col.Name.O) |
no test coverage detected