Commits

Sutou Kouhei authored 328c5dd7b66
ARROW-10809: [C++] Use Datum for SortIndices() input Because we migrated to Datum-based version for Take() in 1.0.0. New API should follow the convention. We keep SortIndices(Array) and SortIndices(ChunkedArray) to provide easy to use shortcut. SortIndices(Datum) uses SortOptions but SortIndices(Array) and SortIndices(ChunkedArray) need only SortOrder. If we provide only SortIndices(Datum), users need to create SortOptions even when they just want to specify order. Closes #8835 from kou/cpp-sort-indices-datum Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>