(n *pg.CoerceViaIO)
| 785 | } |
| 786 | |
| 787 | func convertCoerceViaIO(n *pg.CoerceViaIO) *ast.CoerceViaIO { |
| 788 | if n == nil { |
| 789 | return nil |
| 790 | } |
| 791 | return &ast.CoerceViaIO{ |
| 792 | Xpr: convertNode(n.Xpr), |
| 793 | Arg: convertNode(n.Arg), |
| 794 | Resulttype: ast.Oid(n.Resulttype), |
| 795 | Resultcollid: ast.Oid(n.Resultcollid), |
| 796 | Coerceformat: ast.CoercionForm(n.Coerceformat), |
| 797 | Location: int(n.Location), |
| 798 | } |
| 799 | } |
| 800 | |
| 801 | func convertCollateClause(n *pg.CollateClause) *ast.CollateClause { |
| 802 | if n == nil { |
no test coverage detected