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

Method IsNulls

client/column.go:810–817  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

808}
809
810func (c *RunLengthEncodedColumn) IsNulls() []bool {
811 result := make([]bool, c.positionCount)
812 v := c.value.IsNull(0)
813 for i := int32(0); i < c.positionCount; i++ {
814 result[i] = v
815 }
816 return result
817}
818
819func (c *RunLengthEncodedColumn) GetPositionCount() int32 {
820 return c.positionCount

Callers

nothing calls this directly

Calls 1

IsNullMethod · 0.65

Tested by

no test coverage detected