MCPcopy Create free account
hub / github.com/apache/iotdb-client-go / GetBinaries

Method GetBinaries

client/column.go:778–788  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

776}
777
778func (c *RunLengthEncodedColumn) GetBinaries() ([]*Binary, error) {
779 v, err := c.value.GetBinary(0)
780 if err != nil {
781 return nil, err
782 }
783 result := make([]*Binary, c.positionCount)
784 for i := int32(0); i < c.positionCount; i++ {
785 result[i] = v
786 }
787 return result, err
788}
789
790func (c *RunLengthEncodedColumn) GetObjects() ([]interface{}, error) {
791 v, err := c.value.GetObject(0)

Callers

nothing calls this directly

Calls 1

GetBinaryMethod · 0.65

Tested by

no test coverage detected