Skip to content

Commit

Permalink
wip: Adhere to code review suggestion by fred.
Browse files Browse the repository at this point in the history
  • Loading branch information
shahzadlone committed Jul 6, 2022
1 parent 66d95ac commit a4be02f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions query/graphql/planner/select.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ func (p *Planner) SelectFromSource(
}
s.filter = parsed.Filter
limit := parsed.Limit
order := parsed.OrderBy
orderBy := parsed.OrderBy
groupBy := parsed.GroupBy

if providedSourceInfo != nil {
Expand Down Expand Up @@ -392,7 +392,7 @@ func (p *Planner) SelectFromSource(
return nil, err
}

orderPlan, err := p.OrderBy(parsed, order)
orderPlan, err := p.OrderBy(parsed, orderBy)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit a4be02f

Please sign in to comment.