(n *pg.ReassignOwnedStmt)
| 2332 | } |
| 2333 | |
| 2334 | func convertReassignOwnedStmt(n *pg.ReassignOwnedStmt) *ast.ReassignOwnedStmt { |
| 2335 | if n == nil { |
| 2336 | return nil |
| 2337 | } |
| 2338 | return &ast.ReassignOwnedStmt{ |
| 2339 | Roles: convertSlice(n.Roles), |
| 2340 | Newrole: convertRoleSpec(n.Newrole), |
| 2341 | } |
| 2342 | } |
| 2343 | |
| 2344 | func convertRefreshMatViewStmt(n *pg.RefreshMatViewStmt) *ast.RefreshMatViewStmt { |
| 2345 | if n == nil { |
no test coverage detected