aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/sum.rb
blob: d81455fa5ff1f50f807b7c5c54e77c8562783b4e (plain) (tree)
1
2
3
4
5
6
7
8
9








                                        









                                              


       
module Arel
  module Nodes
    class Sum
      attr_accessor :expressions, :alias

      def initialize expr, aliaz = nil
        @expressions = expr
        @alias       = aliaz
      end

      def as aliaz
        self.alias = SqlLiteral.new(aliaz)
        self
      end

      def to_sql
        viz = Visitors::ToSql.new Table.engine
        viz.accept self
      end
    end
  end
end