MCPcopy Create free account
hub / github.com/apache/arrow / varbinary_end_array

Function varbinary_end_array

cpp/src/arrow/compute/row/row_internal.h:114–117  ·  view source on GitHub ↗

Returns an array of offsets within a row of ends of varbinary fields.

Source from the content-addressed store, hash-verified

112
113 /// Returns an array of offsets within a row of ends of varbinary fields.
114 inline const uint32_t* varbinary_end_array(const uint8_t* row) const {
115 ARROW_DCHECK(!is_fixed_length);
116 return reinterpret_cast<const uint32_t*>(row + varbinary_end_array_offset);
117 }
118
119 /// \brief An array of mutable offsets within a row of ends of varbinary fields.
120 inline uint32_t* varbinary_end_array(uint8_t* row) const {

Calls

no outgoing calls

Tested by

no test coverage detected