You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: arrow/compute/vector_sort.go
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,8 @@ var (
33
33
Description: `This function computes an array of indices that define a stable sort.
34
34
Supports arrays, chunked arrays, record batches, and tables.
35
35
For arrays and chunked arrays, use a single SortKey (ColumnIndex is ignored).
36
-
For record batches and tables, use []SortKey to specify columns and their sort order; at least one key is required and each key must reference a valid column.`,
36
+
For record batches and tables, use []SortKey to specify columns and sort
37
+
order; at least one key is required. Each key must reference a valid column.`,
37
38
ArgNames: []string{"input"},
38
39
OptionsType: "SortKeys",
39
40
}
@@ -52,9 +53,11 @@ For record batches and tables, use []SortKey to specify columns and their sort o
52
53
53
54
sortDoc=FunctionDoc{
54
55
Summary: "Return a sorted copy of the input",
55
-
Description: `This function sorts the input using the same ordering as sort_indices and returns
56
-
the reordered values. It is equivalent to take(input, sort_indices(input, options)).
57
-
Supports arrays, chunked arrays, record batches, and tables with the same SortKeys options as sort_indices.`,
56
+
Description: `This function sorts the input using the same ordering as sort_indices
57
+
and returns the reordered values. It is equivalent to take(input,
58
+
sort_indices(input, options)).
59
+
Supports arrays, chunked arrays, record batches, and tables with the same
0 commit comments