(n *pg.ObjectWithArgs)
| 1982 | } |
| 1983 | |
| 1984 | func convertObjectWithArgs(n *pg.ObjectWithArgs) *ast.ObjectWithArgs { |
| 1985 | if n == nil { |
| 1986 | return nil |
| 1987 | } |
| 1988 | return &ast.ObjectWithArgs{ |
| 1989 | Objname: convertSlice(n.Objname), |
| 1990 | Objargs: convertSlice(n.Objargs), |
| 1991 | ArgsUnspecified: n.ArgsUnspecified, |
| 1992 | } |
| 1993 | } |
| 1994 | |
| 1995 | func convertOnConflictClause(n *pg.OnConflictClause) *ast.OnConflictClause { |
| 1996 | if n == nil { |
no test coverage detected