()
| 453 | } |
| 454 | |
| 455 | func (p *Parser) tryParseAfterClause() (*NestedIdentifier, error) { |
| 456 | if !p.tryConsumeKeywords(KeywordAfter) { |
| 457 | return nil, nil // nolint |
| 458 | } |
| 459 | |
| 460 | return p.ParseNestedIdentifier(p.Pos()) |
| 461 | } |
| 462 | |
| 463 | // Syntax: ALTER TABLE DROP partitionClause |
| 464 | func (p *Parser) parseAlterTableDropPartition(pos Pos) (AlterTableClause, error) { |
no test coverage detected