(n *pg.Alias)
| 199 | } |
| 200 | |
| 201 | func convertAlias(n *pg.Alias) *ast.Alias { |
| 202 | if n == nil { |
| 203 | return nil |
| 204 | } |
| 205 | return &ast.Alias{ |
| 206 | Aliasname: makeString(n.Aliasname), |
| 207 | Colnames: convertSlice(n.Colnames), |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | func convertAlterCollationStmt(n *pg.AlterCollationStmt) *ast.AlterCollationStmt { |
| 212 | if n == nil { |
no test coverage detected