aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/compound.rb
blob: 663711760c008b2ee07935e35852c08cc3cad3ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Arel
  class Compound < Relation
    attr_reader :relation
    hash_on :relation
    delegate :joins, :selects, :orders, :groupings, :inserts, :taken,
             :skipped, :name, :alias, :aggregation?, :column_for,
             :engine, :table, :relation_for, :table_sql,
             :to => :relation
    
    def attributes
      @attributes ||= relation.attributes.collect { |a| a.bind(self) }
    end
  end
end