aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/querying.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-10-30 09:42:02 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-10-30 09:42:02 -0600
commite038975c29aa883cb9ac5472cdb0ea9319158121 (patch)
treea07d201488caaa064aa290b3d91d66fcfd703aa3 /activerecord/lib/active_record/querying.rb
parent67417f18215349cad990b1230ecf591b5509d557 (diff)
parent3f46ef1ddab87482b730a3f53987e04308783d8b (diff)
downloadrails-e038975c29aa883cb9ac5472cdb0ea9319158121.tar.gz
rails-e038975c29aa883cb9ac5472cdb0ea9319158121.tar.bz2
rails-e038975c29aa883cb9ac5472cdb0ea9319158121.zip
Merge pull request #12071 from Crunch09/outer_joins
added ActiveRecord::Relation#outer_joins
Diffstat (limited to 'activerecord/lib/active_record/querying.rb')
-rw-r--r--activerecord/lib/active_record/querying.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/querying.rb b/activerecord/lib/active_record/querying.rb
index 87a1988f2f..7ab2108de0 100644
--- a/activerecord/lib/active_record/querying.rb
+++ b/activerecord/lib/active_record/querying.rb
@@ -7,7 +7,7 @@ module ActiveRecord
delegate :find_by, :find_by!, to: :all
delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, to: :all
delegate :find_each, :find_in_batches, :in_batches, to: :all
- delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :or,
+ delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :left_outer_joins, :or,
:where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly,
:having, :create_with, :uniq, :distinct, :references, :none, :unscope, to: :all
delegate :count, :average, :minimum, :maximum, :sum, :calculate, to: :all