(n *pg.AlterSeqStmt)
| 448 | } |
| 449 | |
| 450 | func convertAlterSeqStmt(n *pg.AlterSeqStmt) *ast.AlterSeqStmt { |
| 451 | if n == nil { |
| 452 | return nil |
| 453 | } |
| 454 | return &ast.AlterSeqStmt{ |
| 455 | Sequence: convertRangeVar(n.Sequence), |
| 456 | Options: convertSlice(n.Options), |
| 457 | ForIdentity: n.ForIdentity, |
| 458 | MissingOk: n.MissingOk, |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | func convertAlterSubscriptionStmt(n *pg.AlterSubscriptionStmt) *ast.AlterSubscriptionStmt { |
| 463 | if n == nil { |
no test coverage detected