(n *pg.AlterExtensionContentsStmt)
| 286 | } |
| 287 | |
| 288 | func convertAlterExtensionContentsStmt(n *pg.AlterExtensionContentsStmt) *ast.AlterExtensionContentsStmt { |
| 289 | if n == nil { |
| 290 | return nil |
| 291 | } |
| 292 | return &ast.AlterExtensionContentsStmt{ |
| 293 | Extname: makeString(n.Extname), |
| 294 | Action: int(n.Action), |
| 295 | Objtype: ast.ObjectType(n.Objtype), |
| 296 | Object: convertNode(n.Object), |
| 297 | } |
| 298 | } |
| 299 | |
| 300 | func convertAlterExtensionStmt(n *pg.AlterExtensionStmt) *ast.AlterExtensionStmt { |
| 301 | if n == nil { |
no test coverage detected