aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/relations/operations/project.rb
blob: 8136f7ce9bf5c39061549d2eca3a8022310dd761 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module Arel
  class Project < Compound
    attr_reader :projections

    def initialize(relation, *projections)
      super(relation)
      @projections = projections.collect { |p| p.bind(relation) }
    end

    def attributes
      @attributes ||= Header.new(projections).bind(self)
    end

    def externalizable?
      attributes.any? { |a| a.respond_to?(:aggregation?) && a.aggregation? } || relation.externalizable?
    end

    def == other
      super ||
        Project === other &&
        relation == other.relation &&
        projections == other.projections
    end

    def eval
      unoperated_rows.collect { |r| r.slice(*projections) }
    end
  end
end