aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/locking.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-07-03 08:32:07 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-07-03 08:32:07 +0000
commitb02776c2321004e1b3855140eb0a6590a634de2d (patch)
tree5a74575ac54e2fd8c66856fa22e0e19860ad11e3 /activerecord/lib/active_record/locking.rb
parent018e12da312a1ac35f23cf32155b61e21362fca4 (diff)
downloadrails-b02776c2321004e1b3855140eb0a6590a634de2d.tar.gz
rails-b02776c2321004e1b3855140eb0a6590a634de2d.tar.bz2
rails-b02776c2321004e1b3855140eb0a6590a634de2d.zip
r1607@asus: jeremy | 2005-07-02 23:36:52 -0700
Rollback MysqlAdapter#select speedup; fix add_limit_offset git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1625 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/locking.rb')
-rw-r--r--activerecord/lib/active_record/locking.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/locking.rb b/activerecord/lib/active_record/locking.rb
index c8868bed3c..71a4666e17 100644
--- a/activerecord/lib/active_record/locking.rb
+++ b/activerecord/lib/active_record/locking.rb
@@ -34,7 +34,7 @@ module ActiveRecord
affected_rows = connection.update(<<-end_sql, "#{self.class.name} Update with optimistic locking")
UPDATE #{self.class.table_name}
- SET #{quoted_comma_pair_list(attributes_with_quotes(false))}
+ SET #{quoted_comma_pair_list(connection, attributes_with_quotes(false))}
WHERE #{self.class.primary_key} = #{quote(id)} AND lock_version = #{quote(previous_value)}
end_sql