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

Struct negateExpression

database/sqlbuilder/expression.go:208–213  ·  view source on GitHub ↗

A not expression which negates a expression value

Source from the content-addressed store, hash-verified

206
207// A not expression which negates a expression value
208type negateExpression struct {
209 isExpression
210 isBoolExpression
211
212 nested BoolExpression
213}
214
215func (c *negateExpression) SerializeSql(out *bytes.Buffer) (err error) {
216 _, _ = out.WriteString("NOT (")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected