| 3 | import "github.com/sqlc-dev/sqlc/internal/sql/format" |
| 4 | |
| 5 | type RowExpr struct { |
| 6 | Xpr Node |
| 7 | Args *List |
| 8 | RowTypeid Oid |
| 9 | RowFormat CoercionForm |
| 10 | Colnames *List |
| 11 | Location int |
| 12 | } |
| 13 | |
| 14 | func (n *RowExpr) Pos() int { |
| 15 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected