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

Struct literalExpression

database/sqlbuilder/expression.go:50–53  ·  view source on GitHub ↗

Representation of an escaped literal

Source from the content-addressed store, hash-verified

48
49// Representation of an escaped literal
50type literalExpression struct {
51 isExpression
52 value sqltypes.Value
53}
54
55func (c literalExpression) SerializeSql(out *bytes.Buffer) error {
56 sqltypes.Value(c.value).EncodeSql(out)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected