Class: ActiveRecord::Relation::HashMerger
- Inherits:
-
Object
- Object
- ActiveRecord::Relation::HashMerger
- Defined in:
- lib/active_record/relation/merger.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#hash ⇒ Object
readonly
Returns the value of attribute hash.
-
#relation ⇒ Object
readonly
Returns the value of attribute relation.
Instance Method Summary collapse
-
#initialize(relation, hash, rewhere = nil) ⇒ HashMerger
constructor
A new instance of HashMerger.
- #merge ⇒ Object
-
#other ⇒ Object
Applying values to a relation has some side effects.
Constructor Details
#initialize(relation, hash, rewhere = nil) ⇒ HashMerger
Returns a new instance of HashMerger.
10 11 12 13 14 15 16 |
# File 'lib/active_record/relation/merger.rb', line 10 def initialize(relation, hash, rewhere = nil) hash.assert_valid_keys(*Relation::VALUE_METHODS) @relation = relation @hash = hash @rewhere = rewhere end |
Instance Attribute Details
#hash ⇒ Object (readonly)
Returns the value of attribute hash.
8 9 10 |
# File 'lib/active_record/relation/merger.rb', line 8 def hash @hash end |
#relation ⇒ Object (readonly)
Returns the value of attribute relation.
8 9 10 |
# File 'lib/active_record/relation/merger.rb', line 8 def relation @relation end |
Instance Method Details
#merge ⇒ Object
18 19 20 |
# File 'lib/active_record/relation/merger.rb', line 18 def merge Merger.new(relation, other, @rewhere).merge end |
#other ⇒ Object
Applying values to a relation has some side effects. E.g. interpolation might take place for where values. So we should build a relation to merge in rather than directly merging the values.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/active_record/relation/merger.rb', line 26 def other other = Relation.create( relation.klass, table: relation.table, predicate_builder: relation.predicate_builder ) hash.each do |k, v| k = :_select if k == :select if Array === v other.public_send("#{k}!", *v) else other.public_send("#{k}!", v) end end other end |