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

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