aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/relations/utilities/compound.rb
blob: b8b0e7d2691af099fdd6222f39d260cf65816321 (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(" ")
    end
  end
end