Commit 0cdd69ed authored by David Wilkins's avatar David Wilkins Committed by Grzegorz Bizon

Apply bindings to querys from QueryRecorder

- local tests that assume certain parameters to queries from
  QueryRecorder fail. These same tests don't fail in the runners,
  and I can't tell why. This fixes the local failures
parent f90759bb
...@@ -8,7 +8,10 @@ module ActiveRecord ...@@ -8,7 +8,10 @@ module ActiveRecord
@log = [] @log = []
@cached = [] @cached = []
@skip_cached = skip_cached @skip_cached = skip_cached
ActiveSupport::Notifications.subscribed(method(:callback), 'sql.active_record', &block) # force replacement of bind parameters to give tests the ability to check for ids
ActiveRecord::Base.connection.unprepared_statement do
ActiveSupport::Notifications.subscribed(method(:callback), 'sql.active_record', &block)
end
end end
def show_backtrace(values) def show_backtrace(values)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment