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

Struct conjunctExpression

database/sqlbuilder/expression.go:91–96  ·  view source on GitHub ↗

Representation of n-ary conjunctions (AND/OR)

Source from the content-addressed store, hash-verified

89
90// Representation of n-ary conjunctions (AND/OR)
91type conjunctExpression struct {
92 isExpression
93 isBoolExpression
94 expressions []BoolExpression
95 conjunction []byte
96}
97
98func (conj *conjunctExpression) SerializeSql(out *bytes.Buffer) (err error) {
99 if len(conj.expressions) == 0 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected