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

Order by selected items when using distinct exists #735

Conversation

aidanharan
Copy link
Contributor

Fixes the failing "FinderTest#test_exists_with_distinct_and_offset_and_select" test.

See failing test at https://travis-ci.org/rails-sqlserver/activerecord-sqlserver-adapter/jobs/655397653?utm_medium=notification&utm_source=github_status

The issue was introduced by rails/rails#36647

The issue was caused by ordering being removed for distinct exists queries. This is fine for other adapters but MSSQL requires ordering on the items in the select distinct.

The failing test produced the following invalid MSSQL SQL:

SELECT  DISTINCT [posts].[body] FROM [posts]  ORDER BY [posts].[id] ASC OFFSET @0 ROWS FETCH NEXT @1 ROWS ONLY

This PR produces:

SELECT  DISTINCT [posts].[body] FROM [posts]  ORDER BY [posts].[body] ASC OFFSET @0 ROWS FETCH NEXT @1 ROWS ONLY

@wpolicarpo wpolicarpo merged commit 825e8f2 into rails-sqlserver:master Feb 27, 2020
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

2 participants