MCPcopy Index your code
hub / github.com/dinedal/textql / InnerValue

Interface InnerValue

sqlparser/sqltypes/sqltypes.go:214–218  ·  view source on GitHub ↗

InnerValue defines methods that need to be supported by all non-null value types.

Source from the content-addressed store, hash-verified

212
213// InnerValue defines methods that need to be supported by all non-null value types.
214type InnerValue interface {
215 raw() []byte
216 encodeSql(BinWriter)
217 encodeAscii(BinWriter)
218}
219
220func BuildValue(goval interface{}) (v Value, err error) {
221 switch bindVal := goval.(type) {

Callers 7

RawMethod · 0.65
StringMethod · 0.65
ParseInt64Method · 0.65
ParseUint64Method · 0.65
ParseFloat64Method · 0.65
EncodeSqlMethod · 0.65
EncodeAsciiMethod · 0.65

Calls

no outgoing calls

Tested by

no test coverage detected