(n *pg.Integer)
| 1813 | } |
| 1814 | |
| 1815 | func convertInteger(n *pg.Integer) *ast.Integer { |
| 1816 | if n == nil { |
| 1817 | return nil |
| 1818 | } |
| 1819 | return &ast.Integer{ |
| 1820 | Ival: int64(n.Ival), |
| 1821 | } |
| 1822 | } |
| 1823 | |
| 1824 | func convertIntoClause(n *pg.IntoClause) *ast.IntoClause { |
| 1825 | if n == nil { |
no outgoing calls
no test coverage detected