Returns the offset within the row and length of the first varbinary field.
| 124 | |
| 125 | /// Returns the offset within the row and length of the first varbinary field. |
| 126 | inline void first_varbinary_offset_and_length(const uint8_t* row, uint32_t* offset, |
| 127 | uint32_t* length) const { |
| 128 | ARROW_DCHECK(!is_fixed_length); |
| 129 | *offset = fixed_length; |
| 130 | *length = varbinary_end_array(row)[0] - fixed_length; |
| 131 | } |
| 132 | |
| 133 | /// Returns the offset within the row and length of the second and further varbinary |
| 134 | /// fields. |
nothing calls this directly
no test coverage detected