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

Struct binaryExpression

database/sqlbuilder/expression.go:237–241  ·  view source on GitHub ↗

Representation of binary operations (e.g. comparisons, arithmetic)

Source from the content-addressed store, hash-verified

235
236// Representation of binary operations (e.g. comparisons, arithmetic)
237type binaryExpression struct {
238 isExpression
239 lhs, rhs Expression
240 operator []byte
241}
242
243func (c *binaryExpression) SerializeSql(out *bytes.Buffer) (err error) {
244 if c.lhs == nil {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected