Returns an array of offsets within a row of ends of varbinary fields.
| 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 { |
no outgoing calls
no test coverage detected