aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/memory/relations/compound.rb
blob: 9e7827dfb3622a744528ac1680d0225902d5fe43 (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