aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/count.rb
blob: 1222a791bb023ae3032cb0ccc2f925a093a5e759 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Arel
  module Nodes
    class Count
      attr_accessor :expressions, :distinct, :alias

      def initialize expr, distinct = false
        @expressions = expr
        @distinct    = distinct
        @alias       = nil
      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