aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/base.rb
diff options
context:
space:
mode:
authorEmilio Tagua <miloops@gmail.com>2009-06-10 17:32:20 -0300
committerEmilio Tagua <miloops@gmail.com>2009-06-10 17:32:20 -0300
commit0587462050ff6f58b277246501d504e6780b481e (patch)
treea558bbfe9b50c5fcfacfe62c7a45db60f17a1ab9 /activerecord/lib/active_record/base.rb
parent7be3e3ba0547587313d87bccb788a8466a62628a (diff)
downloadrails-0587462050ff6f58b277246501d504e6780b481e.tar.gz
rails-0587462050ff6f58b277246501d504e6780b481e.tar.bz2
rails-0587462050ff6f58b277246501d504e6780b481e.zip
Revert "Use ARel in SQL generation through associations"
This reverts commit 7be3e3ba0547587313d87bccb788a8466a62628a.
Diffstat (limited to 'activerecord/lib/active_record/base.rb')
-rwxr-xr-xactiverecord/lib/active_record/base.rb38
1 files changed, 10 insertions, 28 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index f0f70e0636..adc7f5335d 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -839,44 +839,26 @@ module ActiveRecord #:nodoc:
# # Update all books that match our conditions, but limit it to 5 ordered by date
# Book.update_all "author = 'David'", "title LIKE '%Rails%'", :order => 'created_at', :limit => 5
def update_all(updates, conditions = nil, options = {})
- # sql = "UPDATE #{quoted_table_name} SET #{sanitize_sql_for_assignment(updates)} "
+ sql = "UPDATE #{quoted_table_name} SET #{sanitize_sql_for_assignment(updates)} "
- # scope = scope(:find)
-
- # select_sql = ""
- # add_conditions!(select_sql, conditions, scope)
-
- # if options.has_key?(:limit) || (scope && scope[:limit])
- # # Only take order from scope if limit is also provided by scope, this
- # # is useful for updating a has_many association with a limit.
- # add_order!(select_sql, options[:order], scope)
-
- # add_limit!(select_sql, options, scope)
- # sql.concat(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
- # else
- # add_order!(select_sql, options[:order], nil)
- # sql.concat(select_sql)
- # end
-
- # connection.update(sql, "#{name} Update")
scope = scope(:find)
- arel = arel_table
- arel = arel.where(Arel::SqlLiteral.new(construct_conditions(conditions, scope))) if conditions || scope
+ select_sql = ""
+ add_conditions!(select_sql, conditions, scope)
+
if options.has_key?(:limit) || (scope && scope[:limit])
# Only take order from scope if limit is also provided by scope, this
# is useful for updating a has_many association with a limit.
- arel = arel.order(construct_order(options[:order], scope))
+ add_order!(select_sql, options[:order], scope)
- arel = arel.take(construct_limit(options, scope))
- #arel = arel.where(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
- #sql.concat(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
+ add_limit!(select_sql, options, scope)
+ sql.concat(connection.limited_update_conditions(select_sql, quoted_table_name, connection.quote_column_name(primary_key)))
else
- arel = arel.order(construct_order(options[:order], nil))
- #sql.concat(select_sql)
+ add_order!(select_sql, options[:order], nil)
+ sql.concat(select_sql)
end
- arel.update(sanitize_sql_for_assignment(updates))
+ connection.update(sql, "#{name} Update")
end
# Destroys the records matching +conditions+ by instantiating each