(pos Pos)
| 352 | } |
| 353 | |
| 354 | func (p *Parser) tryParsePartitionClause(pos Pos) (*PartitionClause, error) { |
| 355 | if !p.matchKeyword(KeywordPartition) { |
| 356 | return nil, nil // nolint |
| 357 | } |
| 358 | return p.parsePartitionClause(pos) |
| 359 | } |
| 360 | |
| 361 | func (p *Parser) parsePartitionClause(pos Pos) (*PartitionClause, error) { |
| 362 | if err := p.expectKeyword(KeywordPartition); err != nil { |
no test coverage detected