Rails 6.1: Coerce test as SQL is invalid for MSSQL #905
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Coercing the
FinderTest#test_include_on_unloaded_relation_with_having_referencing_aliased_selecttest as SQL Server does not support the SQL.There is no point re-implementing the coerced test as its purpose is to test the HAVING clause referencing an aliased SELECT.
SQL Server
SQL generated:
This SQL is invalid in SQL Server and throws the error
Invalid column name 'total_posts'. There are 2 reasons why the SQL is invalid:total_postsin HAVING clause.authors.*as the columns are not in the GROUP clause.PostgreSQL
PostgreSQL skips this test (https://github.com/rails/rails/blob/d927db7eec984a980e5533dc307164e24c137690/activerecord/test/cases/finder_test.rb#L428) as it does not support the SQL.
Error:
MySQL
Generates the following SQL which is valid in MySQL.
SQLite
Generates the following SQL which is valid in SQLite.