aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/relations/compound.rb
blob: 442224a011e288b37387318756e6c7059b44e9e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRelation
  module Relations
    class Compound < Base
      attr_reader :relation
  
      delegate :attributes, :attribute, :joins, :selects, :orders, :table, :inserts, :limit, :offset, :to => :relation
    end
  end
end