r1602@asus: jeremy | 2005-07-02 14:34:00 -0700

Don't pass connection to quoted_comma_pair_list


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1621 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper
2005-07-03 08:31:09 +00:00
parent 9ebe33f14b
commit a250a98a52

View File

@@ -34,7 +34,7 @@ module ActiveRecord
affected_rows = connection.update(
"UPDATE #{self.class.table_name} "+
"SET #{quoted_comma_pair_list(connection, attributes_with_quotes(false))} " +
"SET #{quoted_comma_pair_list(attributes_with_quotes(false))} " +
"WHERE #{self.class.primary_key} = #{quote(id)} AND lock_version = #{quote(previous_value)}",
"#{self.class.name} Update with optimistic locking"
)
@@ -54,4 +54,4 @@ module ActiveRecord
lock_optimistically && respond_to?(:lock_version)
end
end
end
end