(n *pg.SortGroupClause)
| 2600 | } |
| 2601 | |
| 2602 | func convertSortGroupClause(n *pg.SortGroupClause) *ast.SortGroupClause { |
| 2603 | if n == nil { |
| 2604 | return nil |
| 2605 | } |
| 2606 | return &ast.SortGroupClause{ |
| 2607 | TleSortGroupRef: ast.Index(n.TleSortGroupRef), |
| 2608 | Eqop: ast.Oid(n.Eqop), |
| 2609 | Sortop: ast.Oid(n.Sortop), |
| 2610 | NullsFirst: n.NullsFirst, |
| 2611 | Hashable: n.Hashable, |
| 2612 | } |
| 2613 | } |
| 2614 | |
| 2615 | func convertString(n *pg.String) *ast.String { |
| 2616 | if n == nil { |
no test coverage detected