-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
in: query-parserEverything related to parsing JPQL or SQLEverything related to parsing JPQL or SQLtype: enhancementA general enhancementA general enhancementtype: taskA general taskA general task
Milestone
Description
For queries where a column is an alias:
select AVG(p.points) as avg
from Player p
...when we have a Sort.by("avg")
, it should NOT append order by p.avg
but instead simply have order by avg
.
Essentially, anywhere we have an aliased column or value, that should be supported in the order by
operations.
Metadata
Metadata
Assignees
Labels
in: query-parserEverything related to parsing JPQL or SQLEverything related to parsing JPQL or SQLtype: enhancementA general enhancementA general enhancementtype: taskA general taskA general task