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

Function deserializeColumnEncoding

client/tsblock.go:120–126  ·  view source on GitHub ↗
(reader *bytes.Reader)

Source from the content-addressed store, hash-verified

118}
119
120func deserializeColumnEncoding(reader *bytes.Reader) (ColumnEncoding, error) {
121 b, err := reader.ReadByte()
122 if err != nil {
123 return RLE_COLUMN_ENCODING, err
124 }
125 return getColumnEncodingByByte(b)
126}
127
128func (t *TsBlock) GetPositionCount() int32 {
129 return t.positionCount

Callers 2

ReadColumnMethod · 0.85
DeserializeTsBlockFunction · 0.85

Calls 1

getColumnEncodingByByteFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…