Identifier represents a column or table name
| 628 | |
| 629 | // Identifier represents a column or table name |
| 630 | type Identifier struct { |
| 631 | Name string |
| 632 | Table string // Optional table qualifier |
| 633 | Pos models.Location // Source position of this identifier (1-based line and column) |
| 634 | } |
| 635 | |
| 636 | func (i *Identifier) expressionNode() {} |
| 637 | func (i Identifier) TokenLiteral() string { return i.Name } |
nothing calls this directly
no outgoing calls
no test coverage detected