(n *pg.ClusterStmt)
| 734 | } |
| 735 | |
| 736 | func convertClusterStmt(n *pg.ClusterStmt) *ast.ClusterStmt { |
| 737 | if n == nil { |
| 738 | return nil |
| 739 | } |
| 740 | return &ast.ClusterStmt{ |
| 741 | Relation: convertRangeVar(n.Relation), |
| 742 | Indexname: makeString(n.Indexname), |
| 743 | } |
| 744 | } |
| 745 | |
| 746 | func convertCoalesceExpr(n *pg.CoalesceExpr) *ast.CoalesceExpr { |
| 747 | if n == nil { |
no test coverage detected