MCPcopy Index your code
hub / github.com/apache/iotdb-client-go / getColumnEncodingByByte

Function getColumnEncodingByByte

client/column.go:58–64  ·  view source on GitHub ↗
(b byte)

Source from the content-addressed store, hash-verified

56}
57
58func getColumnEncodingByByte(b byte) (ColumnEncoding, error) {
59 encoding, exists := byteToEncoding[b]
60 if !exists {
61 return INT32_ARRAY_COLUMN_ENCODING, fmt.Errorf("invalid value: %v", b)
62 }
63 return encoding, nil
64}
65
66type Column interface {
67 GetDataType() TSDataType

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…