aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/memory/relations/compound.rb
blob: 6dda92a6a1242d5bb99107826f25a3a75ef781d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  class Compound < Relation
    delegate :array, :to => :relation

    def unoperated_rows
      relation.call.collect { |row| row.bind(self) }
    end
  end
end