MCPcopy Index your code
hub / github.com/dropbox/godropbox / C

Method C

database/sqlbuilder/table.go:96–101  ·  view source on GitHub ↗

Returns a pseudo column representation of the column name. Error checking is deferred to SerializeSql.

(name string)

Source from the content-addressed store, hash-verified

94// Returns a pseudo column representation of the column name. Error checking
95// is deferred to SerializeSql.
96func (t *Table) C(name string) NonAliasColumn {
97 return &deferredLookupColumn{
98 table: t,
99 colName: name,
100 }
101}
102
103// Returns all columns for a table as a slice of projections
104func (t *Table) Projections() []Projection {

Calls

no outgoing calls