Remove NULLS FIRST/LAST. closes #5152

This commit is contained in:
kennyj 2012-02-25 23:01:43 +09:00
parent 862e27fbbb
commit 404b73bce1
2 changed files with 6 additions and 1 deletions

@ -1189,7 +1189,7 @@ def distinct(columns, orders) #:nodoc:
# Construct a clean list of column names from the ORDER BY clause, removing
# any ASC/DESC modifiers
order_columns = orders.collect { |s| s.gsub(/\s+(ASC|DESC)\s*/i, '') }
order_columns = orders.collect { |s| s.gsub(/\s+(ASC|DESC)\s*(NULLS\s+(FIRST|LAST)\s*)?/i, '') }
order_columns.delete_if { |c| c.blank? }
order_columns = order_columns.zip((0...order_columns.size).to_a).map { |s,i| "#{s} AS alias_#{i}" }

@ -185,6 +185,11 @@ def test_partial_index
assert_equal "(number > 100)", index.where
end
def test_distinct_with_nulls
assert_equal "DISTINCT posts.title, posts.updater_id AS alias_0", @connection.distinct("posts.title", ["posts.updater_id desc nulls first"])
assert_equal "DISTINCT posts.title, posts.updater_id AS alias_0", @connection.distinct("posts.title", ["posts.updater_id desc nulls last"])
end
private
def insert(ctx, data)
binds = data.map { |name, value|