Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for orderByPosition direction (ie. ORDER BY 1 ASC/DESC) #344

Closed
wants to merge 1 commit into from

Conversation

j-angnoe
Copy link
Contributor

Currently the PHPSQLCreator will ignore the Order direction when using a positional ORDER BY clause (i.e. ORDER BY 1 ASC, ORDER BY 3 DESC). The reason seems that the OrderBuilder reuses the PositionBuilder (which is also used in GROUP BY statements). This PositionBuilder does not take into account a position.

In SQL it is valid to use a positional order by and being able to sort ascending and descending, so I think this should be reflected by the PHPSQLCreator. That's why i've decided create a new OrderByPositionBuilder which does take into account the order direction. The orderbyposition test has also been updated to reflect this change.

@j-angnoe j-angnoe changed the title Fix support for orderByPosition (ORDER BY 1 ASC/ORDER BY 1 DESC) Add support for orderByPosition direcction (ie. ORDER BY 1 ASC/DESC) Nov 14, 2021
@j-angnoe j-angnoe changed the title Add support for orderByPosition direcction (ie. ORDER BY 1 ASC/DESC) Add support for orderByPosition direction (ie. ORDER BY 1 ASC/DESC) Nov 14, 2021
@j-angnoe j-angnoe closed this Nov 30, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant