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

Struct Ident

pkg/sql/ast/types.go:121–123  ·  view source on GitHub ↗

Ident represents an identifier in SQL (table name, column name, etc.)

Source from the content-addressed store, hash-verified

119
120// Ident represents an identifier in SQL (table name, column name, etc.)
121type Ident struct {
122 Name string
123}
124
125func (i *Ident) String() string { return i.Name }
126

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected