Skip to content

Commit f09d219

Browse files
committed
Cleanup
1 parent f739a7b commit f09d219

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

lib/arel/visitors/sqlserver.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def visit_Arel_Nodes_SelectStatement_SQLServer_Lock(collector, options = {})
253253
end
254254
collector
255255
end
256-
256+
257257
def visit_Orders_And_Let_Fetch_Happen(o, collector)
258258
make_Fetch_Possible_And_Deterministic o
259259
if o.orders.any?

test/cases/order_test_sqlserver.rb

+1-17
Original file line numberDiff line numberDiff line change
@@ -153,35 +153,21 @@ class OrderTestSQLServer < ActiveRecord::TestCase
153153

154154
describe "simple query containing limit" do
155155
it "order by primary key if no projections" do
156-
$DEBUG = false
157-
158156
sql = Post.limit(5).to_sql
159157

160158
assert_equal "SELECT [posts].* FROM [posts] ORDER BY [posts].[id] ASC OFFSET 0 ROWS FETCH NEXT 5 ROWS ONLY", sql
161-
162-
$DEBUG = false
163159
end
164160

165161
it "use order provided" do
166-
# $DEBUG = true
167-
168162
sql = Post.select(:legacy_comments_count).order(:tags_count).limit(5).to_sql
169163

170164
assert_equal "SELECT [posts].[legacy_comments_count] FROM [posts] ORDER BY [posts].[tags_count] ASC OFFSET 0 ROWS FETCH NEXT 5 ROWS ONLY", sql
171-
172-
# binding.pry
173-
174165
end
175166

176167
it "order by first projection if no order provided" do
177-
# $DEBUG = true
178-
179168
sql = Post.select(:legacy_comments_count).limit(5).to_sql
180169

181170
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-
185171
end
186172

187173
it "order by first projection (when multiple projections) if no order provided" do
@@ -200,12 +186,10 @@ class OrderTestSQLServer < ActiveRecord::TestCase
200186
assert_equal result, [11, 5, 1]
201187
end
202188
end
203-
#
189+
204190
it "in the subquery the first projection is used for ordering if none provided" do
205191
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"
206192

207-
# binding.pry
208-
209193
assert_queries_match(/#{Regexp.escape(sql)}/) do
210194
result = Post.from(Post.limit(5).select(:legacy_comments_count, :tags_count)).pick(Arel.sql("sum(legacy_comments_count), count(*), min(legacy_comments_count)"))
211195
assert_equal result, [0, 5, 0]

0 commit comments

Comments
 (0)