MCPcopy
hub / github.com/dropbox/godropbox / unionStatementImpl

Struct unionStatementImpl

database/sqlbuilder/statement.go:126–134  ·  view source on GitHub ↗

Similar to selectStatementImpl, but less complete

Source from the content-addressed store, hash-verified

124
125// Similar to selectStatementImpl, but less complete
126type unionStatementImpl struct {
127 selects []SelectStatement
128 where BoolExpression
129 group *listClause
130 order *listClause
131 limit, offset int64
132 // True if results of the union should be deduped.
133 unique bool
134}
135
136func (us *unionStatementImpl) Where(expression BoolExpression) UnionStatement {
137 us.where = expression

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected