(n *pg.AlterCollationStmt)
| 209 | } |
| 210 | |
| 211 | func convertAlterCollationStmt(n *pg.AlterCollationStmt) *ast.AlterCollationStmt { |
| 212 | if n == nil { |
| 213 | return nil |
| 214 | } |
| 215 | return &ast.AlterCollationStmt{ |
| 216 | Collname: convertSlice(n.Collname), |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | func convertAlterDatabaseSetStmt(n *pg.AlterDatabaseSetStmt) *ast.AlterDatabaseSetStmt { |
| 221 | if n == nil { |
no test coverage detected