(n *pcast.DropDatabaseStmt)
| 941 | } |
| 942 | |
| 943 | func (c *cc) convertDropDatabaseStmt(n *pcast.DropDatabaseStmt) ast.Node { |
| 944 | return &ast.DropSchemaStmt{ |
| 945 | MissingOk: !n.IfExists, |
| 946 | Schemas: []*ast.String{ |
| 947 | NewIdentifier(n.Name.O), |
| 948 | }, |
| 949 | } |
| 950 | } |
| 951 | |
| 952 | func (c *cc) convertDropIndexStmt(n *pcast.DropIndexStmt) ast.Node { |
| 953 | return todo(n) |
no test coverage detected