(n *pg.CreateSeqStmt)
| 1216 | } |
| 1217 | |
| 1218 | func convertCreateSeqStmt(n *pg.CreateSeqStmt) *ast.CreateSeqStmt { |
| 1219 | if n == nil { |
| 1220 | return nil |
| 1221 | } |
| 1222 | return &ast.CreateSeqStmt{ |
| 1223 | Sequence: convertRangeVar(n.Sequence), |
| 1224 | Options: convertSlice(n.Options), |
| 1225 | OwnerId: ast.Oid(n.OwnerId), |
| 1226 | ForIdentity: n.ForIdentity, |
| 1227 | IfNotExists: n.IfNotExists, |
| 1228 | } |
| 1229 | } |
| 1230 | |
| 1231 | func convertCreateStatsStmt(n *pg.CreateStatsStmt) *ast.CreateStatsStmt { |
| 1232 | if n == nil { |
no test coverage detected