| 85 | type baseColumnDecoder struct{} |
| 86 | |
| 87 | type Int32ArrayColumnDecoder struct { |
| 88 | baseColumnDecoder |
| 89 | } |
| 90 | |
| 91 | func (decoder *Int32ArrayColumnDecoder) ReadColumn(reader *bytes.Reader, dataType TSDataType, positionCount int32) (Column, error) { |
| 92 | // Serialized data layout: |
nothing calls this directly
no outgoing calls
no test coverage detected