(pos Pos)
| 74 | } |
| 75 | |
| 76 | func (p *Parser) tryParseDistinctOn(pos Pos) (*DistinctOn, error) { |
| 77 | if !p.matchKeyword(KeywordOn) { |
| 78 | return nil, nil |
| 79 | } |
| 80 | return p.parseDistinctOn(pos) |
| 81 | } |
| 82 | |
| 83 | func (p *Parser) parseDistinctOn(pos Pos) (*DistinctOn, error) { |
| 84 | if err := p.expectKeyword(KeywordOn); err != nil { |
no test coverage detected