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

    def build_query(*parts)
      parts.compact.join("\n")
    end
  end
end