You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert_equal"SELECT [posts].[legacy_comments_count] FROM [posts] ORDER BY [posts].[legacy_comments_count] ASC OFFSET 0 ROWS FETCH NEXT 5 ROWS ONLY",sql
182
-
183
-
# binding.pry
184
-
185
171
end
186
172
187
173
it"order by first projection (when multiple projections) if no order provided"do
@@ -200,12 +186,10 @@ class OrderTestSQLServer < ActiveRecord::TestCase
200
186
assert_equalresult,[11,5,1]
201
187
end
202
188
end
203
-
#
189
+
204
190
it"in the subquery the first projection is used for ordering if none provided"do
205
191
sql="SELECT sum(legacy_comments_count), count(*), min(legacy_comments_count) FROM (SELECT [posts].[legacy_comments_count], [posts].[tags_count] FROM [posts] ORDER BY [posts].[legacy_comments_count] ASC OFFSET 0 ROWS FETCH NEXT @0 ROWS ONLY) subquery ORDER BY sum(legacy_comments_count) ASC OFFSET 0 ROWS FETCH NEXT @1 ROWS ONLY"
0 commit comments