aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/memory/relations/compound.rb
blob: 3791fa462294308e214fe67b787cd92286b5fe34 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  class Compound < Relation
    delegate :array, :to => :relation
    
    def unoperated_rows
      relation.eval.collect { |row| row.bind(self) }
    end
  end
end