aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/log_subscriber.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-02-10 14:17:09 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-02-10 14:17:09 -0800
commit339ad0d0020cf7173ef7debe32f3cbb8809de5ca (patch)
treef8e559507cf8f8697922f6e070a731fb54c5f0df /activerecord/lib/active_record/log_subscriber.rb
parent61b69338b27e3d865d4ca87269a7c12a74ea32da (diff)
downloadrails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.tar.gz
rails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.tar.bz2
rails-339ad0d0020cf7173ef7debe32f3cbb8809de5ca.zip
fixing tests on 1.8, using a list of lists because order is important
Diffstat (limited to 'activerecord/lib/active_record/log_subscriber.rb')
-rw-r--r--activerecord/lib/active_record/log_subscriber.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/log_subscriber.rb b/activerecord/lib/active_record/log_subscriber.rb
index 8855798bde..afadbf03ef 100644
--- a/activerecord/lib/active_record/log_subscriber.rb
+++ b/activerecord/lib/active_record/log_subscriber.rb
@@ -28,7 +28,9 @@ module ActiveRecord
binds = nil
unless (payload[:binds] || []).empty?
- binds = " #{Hash[payload[:binds].map { |col,v| [col.name, v] }]}"
+ binds = " " + payload[:binds].map { |col,v|
+ [col.name, v]
+ }.inspect
end
if odd?