aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2006-11-10 19:18:07 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2006-11-10 19:18:07 +0000
commitc0bce43e903fe42645c16a8062ce1cd970217f40 (patch)
treec72089bbd6a62640956bbd5360ab05e23507727b /activerecord/lib/active_record/connection_adapters/oracle_adapter.rb
parent63df6eb3821ba9723a3478f6331bd14b81be8140 (diff)
downloadrails-c0bce43e903fe42645c16a8062ce1cd970217f40.tar.gz
rails-c0bce43e903fe42645c16a8062ce1cd970217f40.tar.bz2
rails-c0bce43e903fe42645c16a8062ce1cd970217f40.zip
Oracle: fix limited id selection for eager loading. Closes #6515.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5480 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/oracle_adapter.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/oracle_adapter.rb30
1 files changed, 29 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb b/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb
index bd67ea7d75..b8d3ed5a95 100644
--- a/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/oracle_adapter.rb
@@ -314,7 +314,7 @@ begin
def columns(table_name, name = nil) #:nodoc:
(owner, table_name) = @connection.describe(table_name)
- raise "Couldn't describe #{table_name}. Does it exist?" unless owner and table_name
+ raise "Could not describe #{table_name}. Does it exist?" unless owner and table_name
table_cols = %Q{
select column_name as name, data_type as sql_type, data_default, nullable,
@@ -427,6 +427,34 @@ begin
end
end
+ # SELECT DISTINCT clause for a given set of columns and a given ORDER BY clause.
+ #
+ # Oracle requires the ORDER BY columns to be in the SELECT list for DISTINCT
+ # queries. However, with those columns included in the SELECT DISTINCT list, you
+ # won't actually get a distinct list of the column you want (presuming the column
+ # has duplicates with multiple values for the ordered-by columns. So we use the
+ # FIRST_VALUE function to get a single (first) value for each column, effectively
+ # making every row the same.
+ #
+ # distinct("posts.id", "posts.created_at desc")
+ def distinct(columns, order_by)
+ return "DISTINCT #{columns}" if order_by.blank?
+
+ # construct a clean list of column names from the ORDER BY clause, removing
+ # any asc/desc modifiers
+ order_columns = order_by.split(',').collect! { |s| s.split.first }
+ order_columns.delete_if &:blank?
+
+ # simplify the ORDER BY to just use positional syntax, to avoid the complexity of
+ # having to create valid column aliases for the FIRST_VALUE columns
+ order_by.replace(((offset=columns.count(',')+2) .. offset+order_by.count(',')).to_a * ", ")
+
+ # construct a valid DISTINCT clause, ie. one that includes the ORDER BY columns, using
+ # FIRST_VALUE such that the inclusion of these columns doesn't invalidate the DISTINCT
+ order_columns.map! { |c| "FIRST_VALUE(#{c}) OVER (PARTITION BY #{columns} ORDER BY #{c})" }
+ sql = "DISTINCT #{columns}, "
+ sql << order_columns * ", "
+ end
private