We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 889fa2e commit ad75fadCopy full SHA for ad75fad
crates/query-engine/translation/src/translation/query/sorting.rs
@@ -121,7 +121,7 @@ impl OrderByElementGroup<'_> {
121
122
/// Group order by elements with the same path. Separate columns and aggregates
123
/// because they each return different amount of rows.
124
-fn group_elements(elements: &[models::OrderByElement]) -> Vec<OrderByElementGroup> {
+fn group_elements(elements: &[models::OrderByElement]) -> Vec<OrderByElementGroup<'_>> {
125
// We need to jump through some hoops to group path elements because serde_json::Value
126
// does not have Ord or Hash instances. So we use u64 as a key derived from hashing the
127
// string representation of a path.
0 commit comments