(n *pg.AlterFunctionStmt)
| 331 | } |
| 332 | |
| 333 | func convertAlterFunctionStmt(n *pg.AlterFunctionStmt) *ast.AlterFunctionStmt { |
| 334 | if n == nil { |
| 335 | return nil |
| 336 | } |
| 337 | return &ast.AlterFunctionStmt{ |
| 338 | Func: convertObjectWithArgs(n.Func), |
| 339 | Actions: convertSlice(n.Actions), |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | func convertAlterObjectDependsStmt(n *pg.AlterObjectDependsStmt) *ast.AlterObjectDependsStmt { |
| 344 | if n == nil { |
no test coverage detected