aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/relations/compound.rb
blob: d71d0ffeb59d3dbbf2ada9f5abe1e16d9e86d1c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
module ActiveRelation
  class Compound < Relation
    attr_reader :relation

    delegate :projections, :attributes, :attribute, :joins, :selects, :orders, :groupings, :table_sql, :inserts, :limit,
             :offset, :name, :alias, :aggregation?,
             :to => :relation
  end
end