b41sh commented on a change in pull request #779: URL: https://github.com/apache/arrow-rs/pull/779#discussion_r763739631
########## File path: arrow/src/compute/kernels/sort.rs ########## @@ -243,6 +243,11 @@ pub fn sort_to_indices( DataType::Interval(IntervalUnit::DayTime) => { sort_primitive::<IntervalDayTimeType, _>(values, v, n, cmp, &options, limit) } + DataType::Interval(IntervalUnit::MonthDayNano) => { + sort_primitive::<IntervalMonthDayNanoType, _>( Review comment: Can I write a function like `sort_month_day_nanos` for it? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org