(pos Pos)
| 932 | } |
| 933 | |
| 934 | func (p *Parser) tryParseHavingClause(pos Pos) (*HavingClause, error) { |
| 935 | if !p.matchKeyword(KeywordHaving) { |
| 936 | return nil, nil |
| 937 | } |
| 938 | return p.parseHavingClause(pos) |
| 939 | } |
| 940 | |
| 941 | func (p *Parser) parseHavingClause(pos Pos) (*HavingClause, error) { |
| 942 | if err := p.expectKeyword(KeywordHaving); err != nil { |
no test coverage detected