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

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