(n *pg.CreateTableSpaceStmt)
| 1287 | } |
| 1288 | |
| 1289 | func convertCreateTableSpaceStmt(n *pg.CreateTableSpaceStmt) *ast.CreateTableSpaceStmt { |
| 1290 | if n == nil { |
| 1291 | return nil |
| 1292 | } |
| 1293 | return &ast.CreateTableSpaceStmt{ |
| 1294 | Tablespacename: makeString(n.Tablespacename), |
| 1295 | Owner: convertRoleSpec(n.Owner), |
| 1296 | Location: makeString(n.Location), |
| 1297 | Options: convertSlice(n.Options), |
| 1298 | } |
| 1299 | } |
| 1300 | |
| 1301 | func convertCreateTransformStmt(n *pg.CreateTransformStmt) *ast.CreateTransformStmt { |
| 1302 | if n == nil { |
no test coverage detected