Skip to content

Commit ad75fad

Browse files
committed
Lint fix
1 parent 889fa2e commit ad75fad

File tree

1 file changed

+1
-1
lines changed
  • crates/query-engine/translation/src/translation/query

1 file changed

+1
-1
lines changed

crates/query-engine/translation/src/translation/query/sorting.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ impl OrderByElementGroup<'_> {
121121

122122
/// Group order by elements with the same path. Separate columns and aggregates
123123
/// because they each return different amount of rows.
124-
fn group_elements(elements: &[models::OrderByElement]) -> Vec<OrderByElementGroup> {
124+
fn group_elements(elements: &[models::OrderByElement]) -> Vec<OrderByElementGroup<'_>> {
125125
// We need to jump through some hoops to group path elements because serde_json::Value
126126
// does not have Ord or Hash instances. So we use u64 as a key derived from hashing the
127127
// string representation of a path.

0 commit comments

Comments
 (0)