Class: ActiveRecord::Relation::Merger
- Inherits:
-
Object
- Object
- ActiveRecord::Relation::Merger
- Defined in:
- lib/active_record/relation/merger.rb
Overview
:nodoc:
Constant Summary collapse
- NORMAL_VALUES =
Relation::SINGLE_VALUE_METHODS + Relation::MULTI_VALUE_METHODS - [:joins, :where, :order, :bind, :reverse_order, :lock, :create_with, :reordering, :from]
Instance Attribute Summary collapse
-
#other ⇒ Object
readonly
Returns the value of attribute other.
-
#relation ⇒ Object
readonly
Returns the value of attribute relation.
-
#values ⇒ Object
readonly
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(relation, other) ⇒ Merger
constructor
A new instance of Merger.
- #merge ⇒ Object
- #normal_values ⇒ Object
Constructor Details
#initialize(relation, other) ⇒ Merger
Returns a new instance of Merger.
46 47 48 49 50 51 52 53 54 |
# File 'lib/active_record/relation/merger.rb', line 46 def initialize(relation, other) if other.default_scoped? && other.klass != relation.klass other = other.with_default_scope end @relation = relation @values = other.values @other = other end |
Instance Attribute Details
#other ⇒ Object (readonly)
Returns the value of attribute other.
44 45 46 |
# File 'lib/active_record/relation/merger.rb', line 44 def other @other end |
#relation ⇒ Object (readonly)
Returns the value of attribute relation.
44 45 46 |
# File 'lib/active_record/relation/merger.rb', line 44 def relation @relation end |
#values ⇒ Object (readonly)
Returns the value of attribute values.
44 45 46 |
# File 'lib/active_record/relation/merger.rb', line 44 def values @values end |
Instance Method Details
#merge ⇒ Object
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
# File 'lib/active_record/relation/merger.rb', line 64 def merge normal_values.each do |name| value = values[name] # The unless clause is here mostly for performance reasons (since the `send` call might be moderately # expensive), most of the time the value is going to be `nil` or `.blank?`, the only catch is that # `false.blank?` returns `true`, so there needs to be an extra check so that explicit `false` values # don't fall through the cracks. unless value.nil? || (value.blank? && false != value) if name == :select relation._select!(*value) else relation.send("#{name}!", *value) end end end merge_multi_values merge_single_values merge_joins relation end |
#normal_values ⇒ Object
60 61 62 |
# File 'lib/active_record/relation/merger.rb', line 60 def normal_values NORMAL_VALUES end |