| 90 | offset) {} |
| 91 | |
| 92 | DayTimeIntervalType::DayMilliseconds DayTimeIntervalArray::GetValue(int64_t i) const { |
| 93 | DCHECK(i < length()); |
| 94 | return *reinterpret_cast<const DayTimeIntervalType::DayMilliseconds*>( |
| 95 | raw_values_ + (i + data_->offset) * byte_width()); |
| 96 | } |
| 97 | |
| 98 | // ---------------------------------------------------------------------- |
| 99 | // Month, day and Nanos interval |
nothing calls this directly
no test coverage detected