diff options
author | Xavier Noria <fxn@hashref.com> | 2011-12-02 09:29:26 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-12-02 09:29:26 -0800 |
commit | 31a3124f05c1c307d7c5a95a9d642f313f54e2db (patch) | |
tree | 29f911625071754f34150a663026d8ebbb1326e2 | |
parent | 36cc1f78eb17765f51e88085c30c39f40f3cb611 (diff) | |
parent | 9a59475d4ab5ba0fe92fe8c4fe435597a2ae5720 (diff) | |
download | rails-31a3124f05c1c307d7c5a95a9d642f313f54e2db.tar.gz rails-31a3124f05c1c307d7c5a95a9d642f313f54e2db.tar.bz2 rails-31a3124f05c1c307d7c5a95a9d642f313f54e2db.zip |
Merge pull request #3832 from arunagw/indentation
indentation fix warning
-rw-r--r-- | activerecord/lib/active_record/relation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb index 1db26562b8..30cd8679fe 100644 --- a/activerecord/lib/active_record/relation.rb +++ b/activerecord/lib/active_record/relation.rb @@ -154,7 +154,7 @@ module ActiveRecord # # Please see further details in the # {Active Record Query Interface guide}[http://edgeguides.rubyonrails.org/active_record_querying.html#running-explain]. - def explain + def explain _, sqls, binds = collecting_sqls_for_explain { exec_query } exec_explain(sqls, binds) end |