| 3 | import "github.com/sqlc-dev/sqlc/internal/sql/format" |
| 4 | |
| 5 | type WindowDef struct { |
| 6 | Name *string |
| 7 | Refname *string |
| 8 | PartitionClause *List |
| 9 | OrderClause *List |
| 10 | FrameOptions int |
| 11 | StartOffset Node |
| 12 | EndOffset Node |
| 13 | Location int |
| 14 | } |
| 15 | |
| 16 | func (n *WindowDef) Pos() int { |
| 17 | return n.Location |
nothing calls this directly
no outgoing calls
no test coverage detected