| 93 | } |
| 94 | |
| 95 | uint8_t* mutable_val_ptr() { |
| 96 | int val_offset = KUDU_ALIGN_UP(key_length, sizeof(void*)); |
| 97 | return &kv_data[val_offset]; |
| 98 | } |
| 99 | |
| 100 | const uint8_t* val_ptr() const { |
| 101 | return const_cast<RLHandle*>(this)->mutable_val_ptr(); |
no outgoing calls
no test coverage detected