Representation of an escaped literal
| 48 | |
| 49 | // Representation of an escaped literal |
| 50 | type literalExpression struct { |
| 51 | isExpression |
| 52 | value sqltypes.Value |
| 53 | } |
| 54 | |
| 55 | func (c literalExpression) SerializeSql(out *bytes.Buffer) error { |
| 56 | sqltypes.Value(c.value).EncodeSql(out) |
nothing calls this directly
no outgoing calls
no test coverage detected