MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / Identifier

Struct Identifier

pkg/sql/ast/ast.go:630–634  ·  view source on GitHub ↗

Identifier represents a column or table name

Source from the content-addressed store, hash-verified

628
629// Identifier represents a column or table name
630type 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
636func (i *Identifier) expressionNode() {}
637func (i Identifier) TokenLiteral() string { return i.Name }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected