(n *pcast.DropTableStmt)
| 380 | } |
| 381 | |
| 382 | func (c *cc) convertDropTableStmt(n *pcast.DropTableStmt) ast.Node { |
| 383 | drop := &ast.DropTableStmt{IfExists: n.IfExists} |
| 384 | for _, name := range n.Tables { |
| 385 | drop.Tables = append(drop.Tables, parseTableName(name)) |
| 386 | } |
| 387 | return drop |
| 388 | } |
| 389 | |
| 390 | func (c *cc) convertRenameTableStmt(n *pcast.RenameTableStmt) ast.Node { |
| 391 | list := &ast.List{Items: []ast.Node{}} |
no test coverage detected